aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/abbrev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index dd075364507..dfde3ccbf96 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -198,7 +198,7 @@ abbrev_check_chars (abbrev, global)
198 { 198 {
199 /* Copied from SYNTAX in syntax.h, except using FOLLOW_PARENT. */ 199 /* Copied from SYNTAX in syntax.h, except using FOLLOW_PARENT. */
200 Lisp_Object syntax_temp 200 Lisp_Object syntax_temp
201 = SYNTAX_ENTRY_FOLLOW_PARENT (Vstandard_syntax_table, c); 201 = CHAR_TABLE_REF (Vstandard_syntax_table, c);
202 if ( (CONSP (syntax_temp) 202 if ( (CONSP (syntax_temp)
203 ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff) 203 ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff)
204 : Swhitespace) != Sword ) badchars[nbad++] = c; 204 : Swhitespace) != Sword ) badchars[nbad++] = c;