Mercurial > emacs
changeset 88852:9a7268b7a742
(SYNTAX_ENTRY_INT): Don't use make_number.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 16 Jul 2002 14:58:26 +0000 |
parents | 5a64797b3ca1 |
children | 503c60238368 |
files | src/syntax.h |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.h Tue Jul 16 14:56:55 2002 +0000 +++ b/src/syntax.h Tue Jul 16 14:58:26 2002 +0000 @@ -82,8 +82,7 @@ # 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. */