Mercurial > emacs
changeset 17181:156896ccc86e
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Adjusted for the change of
CHAR_TABLE_ORDINARY_SLOTS.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 18 Mar 1997 23:31:34 +0000 |
parents | 364327df6e7c |
children | 47bfc66eb7f1 |
files | src/syntax.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.h Tue Mar 18 23:31:34 1997 +0000 +++ b/src/syntax.h Tue Mar 18 23:31:34 1997 +0000 @@ -54,7 +54,7 @@ /* Set the syntax entry VAL for char C in table TABLE. */ #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ - ((c) < CHAR_TABLE_ORDINARY_SLOTS \ + ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \ ? (XCHAR_TABLE (table)->contents[(unsigned char) (c)] = (val)) \ : Faset ((table), make_number (c), (val))) @@ -90,7 +90,7 @@ Do Inheritance. */ #define SYNTAX_ENTRY(c) \ - ((c) < CHAR_TABLE_ORDINARY_SLOTS \ + ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \ ? SYNTAX_ENTRY_FOLLOW_PARENT (current_buffer->syntax_table, \ (unsigned char) (c)) \ : Faref (current_buffer->syntax_table, make_number ((c))))