aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2007-07-23 05:39:21 +0000
committerKenichi Handa2007-07-23 05:39:21 +0000
commita3455baad7c3d8ed2fbf1deb33f88ea93e22defa (patch)
treec9c717cf3261aa2b2f24c0ed109caee0f35100e0 /src
parentf102435593f8ac06c795c6997df825412b481c70 (diff)
downloademacs-a3455baad7c3d8ed2fbf1deb33f88ea93e22defa.tar.gz
emacs-a3455baad7c3d8ed2fbf1deb33f88ea93e22defa.zip
(abbrev_check_chars): Use CHAR_TABLE_REF, not
SYNTAX_ENTRY_FOLLOW_PARENT.
Diffstat (limited to 'src')
-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;