From: Kenichi Handa Date: Tue, 5 Mar 2002 00:09:36 +0000 (+0000) Subject: (SET_RAW_SYNTAX_ENTRY): Don't call make_number. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~950 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dcb82a5edf4d4be34ee566452f528f99df70eb68;p=emacs.git (SET_RAW_SYNTAX_ENTRY): Don't call make_number. --- 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. */