aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.h')
-rw-r--r--src/syntax.h4
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
54/* Set the syntax entry VAL for char C in table TABLE. */ 54/* Set the syntax entry VAL for char C in table TABLE. */
55 55
56#define SET_RAW_SYNTAX_ENTRY(table, c, val) \ 56#define SET_RAW_SYNTAX_ENTRY(table, c, val) \
57 ((c) < CHAR_TABLE_ORDINARY_SLOTS \ 57 ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
58 ? (XCHAR_TABLE (table)->contents[(unsigned char) (c)] = (val)) \ 58 ? (XCHAR_TABLE (table)->contents[(unsigned char) (c)] = (val)) \
59 : Faset ((table), make_number (c), (val))) 59 : Faset ((table), make_number (c), (val)))
60 60
@@ -90,7 +90,7 @@ extern Lisp_Object syntax_parent_lookup ();
90 Do Inheritance. */ 90 Do Inheritance. */
91 91
92#define SYNTAX_ENTRY(c) \ 92#define SYNTAX_ENTRY(c) \
93 ((c) < CHAR_TABLE_ORDINARY_SLOTS \ 93 ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
94 ? SYNTAX_ENTRY_FOLLOW_PARENT (current_buffer->syntax_table, \ 94 ? SYNTAX_ENTRY_FOLLOW_PARENT (current_buffer->syntax_table, \
95 (unsigned char) (c)) \ 95 (unsigned char) (c)) \
96 : Faref (current_buffer->syntax_table, make_number ((c)))) 96 : Faref (current_buffer->syntax_table, make_number ((c))))