changeset 90986:a264ddd46d45

(abbrev_check_chars): Use CHAR_TABLE_REF, not SYNTAX_ENTRY_FOLLOW_PARENT.
author Kenichi Handa <handa@m17n.org>
date Mon, 23 Jul 2007 05:39:21 +0000
parents 89cd46b93749
children b2d8a283f27e
files src/abbrev.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/abbrev.c	Fri Jul 20 17:23:27 2007 +0000
+++ b/src/abbrev.c	Mon Jul 23 05:39:21 2007 +0000
@@ -198,7 +198,7 @@
         {
           /* Copied from SYNTAX in syntax.h, except using FOLLOW_PARENT. */
           Lisp_Object syntax_temp
-            = SYNTAX_ENTRY_FOLLOW_PARENT (Vstandard_syntax_table, c);
+            = CHAR_TABLE_REF (Vstandard_syntax_table, c);
           if ( (CONSP (syntax_temp)
                 ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff)
                 : Swhitespace) != Sword ) badchars[nbad++] = c;