From dcb82a5edf4d4be34ee566452f528f99df70eb68 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 5 Mar 2002 00:09:36 +0000 Subject: [PATCH] (SET_RAW_SYNTAX_ENTRY): Don't call make_number. --- src/syntax.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.h b/src/syntax.h index 37fe06808c0..d323e85b233 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -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. */ -- 2.39.5