]> git.eshelyaron.com Git - emacs.git/commitdiff
(abbrev_check_chars): Use CHAR_TABLE_REF, not
authorKenichi Handa <handa@m17n.org>
Mon, 23 Jul 2007 05:39:21 +0000 (05:39 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 23 Jul 2007 05:39:21 +0000 (05:39 +0000)
SYNTAX_ENTRY_FOLLOW_PARENT.

src/abbrev.c

index dd075364507698f1d66bbe103fd8160801015c66..dfde3ccbf9602d8df406f44fab054794cbe13b25 100644 (file)
@@ -198,7 +198,7 @@ abbrev_check_chars (abbrev, global)
         {
           /* 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;