mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-21 05:21:37 -07:00
(Fdefine_abbrev_table): Use XCAR, XCDR.
This commit is contained in:
parent
2adfdbcbca
commit
52ad5ecc6c
1 changed files with 2 additions and 2 deletions
|
|
@ -592,9 +592,9 @@ of the form (ABBREVNAME EXPANSION HOOK USECOUNT SYSTEMFLAG).
|
|||
}
|
||||
CHECK_VECTOR (table);
|
||||
|
||||
for (; !NILP (definitions); definitions = Fcdr (definitions))
|
||||
for (; CONSP (definitions); definitions = XCDR (definitions))
|
||||
{
|
||||
elt = Fcar (definitions);
|
||||
elt = XCAR (definitions);
|
||||
name = Fcar (elt); elt = Fcdr (elt);
|
||||
exp = Fcar (elt); elt = Fcdr (elt);
|
||||
hook = Fcar (elt); elt = Fcdr (elt);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue