diff options
| author | Kenichi Handa | 2007-07-23 05:39:21 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2007-07-23 05:39:21 +0000 |
| commit | a3455baad7c3d8ed2fbf1deb33f88ea93e22defa (patch) | |
| tree | c9c717cf3261aa2b2f24c0ed109caee0f35100e0 | |
| parent | f102435593f8ac06c795c6997df825412b481c70 (diff) | |
| download | emacs-a3455baad7c3d8ed2fbf1deb33f88ea93e22defa.tar.gz emacs-a3455baad7c3d8ed2fbf1deb33f88ea93e22defa.zip | |
(abbrev_check_chars): Use CHAR_TABLE_REF, not
SYNTAX_ENTRY_FOLLOW_PARENT.
| -rw-r--r-- | src/abbrev.c | 2 |
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; |