Mercurial > emacs
changeset 88432:9302a313a37b
(SET_RAW_SYNTAX_ENTRY): Don't call make_number.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 05 Mar 2002 00:09:36 +0000 |
parents | d5ba4152bd1b |
children | 9a1e7befb0b2 |
files | src/syntax.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.h Tue Mar 05 00:09:15 2002 +0000 +++ b/src/syntax.h Tue Mar 05 00:09:36 2002 +0000 @@ -58,7 +58,7 @@ /* 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. */