comparison src/syntax.h @ 88852:9a7268b7a742

(SYNTAX_ENTRY_INT): Don't use make_number.
author Dave Love <fx@gnu.org>
date Tue, 16 Jul 2002 14:58:26 +0000
parents 9729ea16acd8
children 2f877ed80fa6
comparison
equal deleted inserted replaced
88851:5a64797b3ca1 88852:9a7268b7a742
80 #else 80 #else
81 # define SYNTAX_ENTRY SYNTAX_ENTRY_INT 81 # define SYNTAX_ENTRY SYNTAX_ENTRY_INT
82 # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table 82 # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table
83 #endif 83 #endif
84 84
85 #define SYNTAX_ENTRY_INT(c) \ 85 #define SYNTAX_ENTRY_INT(c) CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, (c))
86 CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, make_number (c))
87 86
88 /* Extract the information from the entry for character C 87 /* Extract the information from the entry for character C
89 in the current syntax table. */ 88 in the current syntax table. */
90 89
91 #ifdef __GNUC__ 90 #ifdef __GNUC__