Mercurial > emacs
diff src/abbrev.c @ 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 | a1be62cbd32a |
children | f55f9811f5d7 |
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;