diff options
| author | Ken Raeburn | 1999-09-13 03:35:33 +0000 |
|---|---|---|
| committer | Ken Raeburn | 1999-09-13 03:35:33 +0000 |
| commit | c1d497be7013fb68603021cfbd77ec34a9938d0b (patch) | |
| tree | 14b121ea82a13cb33c4cf35c1dd32f850b9f5458 /src/syntax.c | |
| parent | 03699b140e13aee5b49fa4678e97dff5855e789c (diff) | |
| download | emacs-c1d497be7013fb68603021cfbd77ec34a9938d0b.tar.gz emacs-c1d497be7013fb68603021cfbd77ec34a9938d0b.zip | |
Use XCAR and XCDR instead of explicit member access.
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 | { |