From: Kenichi Handa Date: Tue, 18 Mar 1997 23:31:34 +0000 (+0000) Subject: (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Adjusted for the change of X-Git-Tag: emacs-20.1~2764 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9ca6ab7d307bfca22ff20459cb7e61e4ab9eb9f0;p=emacs.git (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Adjusted for the change of CHAR_TABLE_ORDINARY_SLOTS. --- 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))))