X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fsyntax.h;h=0a650e7739a7699140a2206d9c9bd9f1c02c63eb;hb=bbf3133177a15f214e3d0060e168ed86dbeed8a2;hp=4a5bffe227e1909b6cc5c466ba85048373b9b6ec;hpb=d45efb1e6cc9b913d12b7a0c51be3624488c3f96;p=chise%2Fxemacs-chise.git.1 diff --git a/src/syntax.h b/src/syntax.h index 4a5bffe..0a650e7 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); + enum syntaxcode ret = Spunct; if (CONSP (code)) code = XCAR (code);