diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index d1830462726..98829863d42 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -979,8 +979,8 @@ describe_syntax (value) | |||
| 979 | return; | 979 | return; |
| 980 | } | 980 | } |
| 981 | 981 | ||
| 982 | first = XCONS (value)->car; | 982 | first = XCAR (value); |
| 983 | match_lisp = XCONS (value)->cdr; | 983 | match_lisp = XCDR (value); |
| 984 | 984 | ||
| 985 | if (!INTEGERP (first) || !(NILP (match_lisp) || INTEGERP (match_lisp))) | 985 | if (!INTEGERP (first) || !(NILP (match_lisp) || INTEGERP (match_lisp))) |
| 986 | { | 986 | { |