From 96ca9a1dfb554993dca1d76696ead86ac2934b97 Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 30 Jul 2004 19:46:31 +0000 Subject: [PATCH] (SYNTAX_CODE_UNSAFE): Use and instead of . --- src/syntax.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/syntax.h b/src/syntax.h index 4a5bffe..9ff8a82 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -1,6 +1,6 @@ /* Declarations having to do with XEmacs syntax tables. Copyright (C) 1985, 1992, 1993 Free Software Foundation, Inc. - Copyright (C) 2001,2003 MORIOKA Tomohiko + Copyright (C) 2001,2003,2004 MORIOKA Tomohiko This file is part of XEmacs. @@ -84,8 +84,8 @@ SYNTAX_CODE_UNSAFE (Lisp_Char_Table *table, Emchar c); INLINE_HEADER enum syntaxcode SYNTAX_CODE_UNSAFE (Lisp_Char_Table *table, Emchar c) { - int code = CHAR_TABLE_VALUE_UNSAFE (table, c); - int ret = Spunct; + Lisp_Object code = CHAR_TABLE_VALUE_UNSAFE (table, c); + EMACS_INT ret = Spunct; if (CONSP (code)) code = XCAR (code); -- 1.7.10.4