diff options
| author | Dave Love | 2002-07-16 14:58:26 +0000 |
|---|---|---|
| committer | Dave Love | 2002-07-16 14:58:26 +0000 |
| commit | 501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee (patch) | |
| tree | c7965960bd358448be190c2f2d752e0bb97cf372 /src | |
| parent | 4732abfcedfa2e9ec969a29b690301af36dd9fd9 (diff) | |
| download | emacs-501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee.tar.gz emacs-501d7ac6bb9dadba0b7bca08ebd9cbe113d885ee.zip | |
(SYNTAX_ENTRY_INT): Don't use make_number.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.h | 3 |
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 | |||
| 82 | # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table | 82 | # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table |
| 83 | #endif | 83 | #endif |
| 84 | 84 | ||
| 85 | #define SYNTAX_ENTRY_INT(c) \ | 85 | #define SYNTAX_ENTRY_INT(c) CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, (c)) |
| 86 | CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, make_number (c)) | ||
| 87 | 86 | ||
| 88 | /* Extract the information from the entry for character C | 87 | /* Extract the information from the entry for character C |
| 89 | in the current syntax table. */ | 88 | in the current syntax table. */ |