From: Dave Love Date: Tue, 16 Jul 2002 14:58:26 +0000 (+0000) Subject: (SYNTAX_ENTRY_INT): Don't use make_number. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~570 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee;p=emacs.git (SYNTAX_ENTRY_INT): Don't use make_number. --- diff --git a/src/syntax.h b/src/syntax.h index 2cd137184f8..1e702bb65c3 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -82,8 +82,7 @@ enum syntaxcode # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table #endif -#define SYNTAX_ENTRY_INT(c) \ - CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, make_number (c)) +#define SYNTAX_ENTRY_INT(c) CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, (c)) /* Extract the information from the entry for character C in the current syntax table. */