comparison src/syntax.h @ 88432:9302a313a37b

(SET_RAW_SYNTAX_ENTRY): Don't call make_number.
author Kenichi Handa <handa@m17n.org>
date Tue, 05 Mar 2002 00:09:36 +0000
parents ee2122ab4d5b
children 9729ea16acd8
comparison
equal deleted inserted replaced
88431:d5ba4152bd1b 88432:9302a313a37b
56 }; 56 };
57 57
58 /* Set the syntax entry VAL for char C in table TABLE. */ 58 /* Set the syntax entry VAL for char C in table TABLE. */
59 59
60 #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ 60 #define SET_RAW_SYNTAX_ENTRY(table, c, val) \
61 CHAR_TABLE_SET ((table), make_number (c), (val)) 61 CHAR_TABLE_SET ((table), c, (val))
62 62
63 /* Set the syntax entry VAL for char-range RANGE in table TABLE. 63 /* Set the syntax entry VAL for char-range RANGE in table TABLE.
64 RANGE is a cons (FROM . TO) specifying the range of characters. */ 64 RANGE is a cons (FROM . TO) specifying the range of characters. */
65 65
66 #define SET_RAW_SYNTAX_ENTRY_RANGE(table, range, val) \ 66 #define SET_RAW_SYNTAX_ENTRY_RANGE(table, range, val) \