# HG changeset patch # User Kenichi Handa # Date 1015286976 0 # Node ID 9302a313a37b9a3608d78e3d4620f5b3fe74575b # Parent d5ba4152bd1b8532980c8148305e04a847536a1e (SET_RAW_SYNTAX_ENTRY): Don't call make_number. diff -r d5ba4152bd1b -r 9302a313a37b src/syntax.h --- a/src/syntax.h Tue Mar 05 00:09:15 2002 +0000 +++ b/src/syntax.h Tue Mar 05 00:09:36 2002 +0000 @@ -58,7 +58,7 @@ /* 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. */