diff options
author | Kenichi Handa <handa@m17n.org> | 1997-03-18 23:31:34 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-03-18 23:31:34 +0000 |
commit | 9ca6ab7d307bfca22ff20459cb7e61e4ab9eb9f0 (patch) | |
tree | 6516d2c12b132c0748994b7a434b51dd5b859a57 /src/syntax.h | |
parent | 085d590815e248a0fb4beca49c8137dcb051de20 (diff) | |
download | emacs-9ca6ab7d307bfca22ff20459cb7e61e4ab9eb9f0.tar.gz |
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Adjusted for the change of
CHAR_TABLE_ORDINARY_SLOTS.
Diffstat (limited to 'src/syntax.h')
-rw-r--r-- | src/syntax.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.h b/src/syntax.h index ee6466a691a..5d78462174f 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -54,7 +54,7 @@ enum syntaxcode /* 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 @@ extern Lisp_Object syntax_parent_lookup (); 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)))) |