summaryrefslogtreecommitdiff
path: root/src/syntax.h
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2002-07-16 14:58:26 +0000
committerDave Love <fx@gnu.org>2002-07-16 14:58:26 +0000
commit501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee (patch)
treec7965960bd358448be190c2f2d752e0bb97cf372 /src/syntax.h
parent4732abfcedfa2e9ec969a29b690301af36dd9fd9 (diff)
downloademacs-501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee.tar.gz
(SYNTAX_ENTRY_INT): Don't use make_number.
Diffstat (limited to 'src/syntax.h')
-rw-r--r--src/syntax.h3
1 files changed, 1 insertions, 2 deletions
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. */