1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 13:10:57 -08:00

(SET_RAW_SYNTAX_ENTRY): Don't call make_number.

This commit is contained in:
Kenichi Handa 2002-03-05 00:09:36 +00:00
parent 1c157f8ddc
commit dcb82a5edf

View file

@ -58,7 +58,7 @@ enum syntaxcode
/* Set the syntax entry VAL for char C in table TABLE. */
#define SET_RAW_SYNTAX_ENTRY(table, c, val) \
CHAR_TABLE_SET ((table), make_number (c), (val))
CHAR_TABLE_SET ((table), c, (val))
/* Set the syntax entry VAL for char-range RANGE in table TABLE.
RANGE is a cons (FROM . TO) specifying the range of characters. */