]> git.eshelyaron.com Git - emacs.git/commitdiff
(SET_RAW_SYNTAX_ENTRY): Don't call make_number.
authorKenichi Handa <handa@m17n.org>
Tue, 5 Mar 2002 00:09:36 +0000 (00:09 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 5 Mar 2002 00:09:36 +0000 (00:09 +0000)
src/syntax.h

index 37fe06808c0510a71ce4cbcf64baa8d1485dd091..d323e85b2335b0aec1de47669ee10007078b3956 100644 (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.  */