Mercurial > emacs
comparison src/syntax.c @ 25663:a5eaace0fa01
Use XCAR and XCDR instead of explicit member access.
| author | Ken Raeburn <raeburn@raeburn.org> |
|---|---|
| date | Mon, 13 Sep 1999 03:35:33 +0000 |
| parents | fe4146e7baf9 |
| children | 21925339c7d2 |
comparison
equal
deleted
inserted
replaced
| 25662:0a7261c1d487 | 25663:a5eaace0fa01 |
|---|---|
| 977 { | 977 { |
| 978 insert_string ("invalid\n"); | 978 insert_string ("invalid\n"); |
| 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 { |
| 987 insert_string ("invalid\n"); | 987 insert_string ("invalid\n"); |
| 988 return; | 988 return; |
