From: tomo Date: Fri, 30 Jul 2004 19:46:31 +0000 (+0000) Subject: (SYNTAX_CODE_UNSAFE): Use and instead of X-Git-Tag: r21-4-15-chise-0_21-31^2~148 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=96ca9a1dfb554993dca1d76696ead86ac2934b97;p=chise%2Fxemacs-chise.git- (SYNTAX_CODE_UNSAFE): Use and instead of . --- 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);