(Fdefine_abbrev_table): Use XCAR, XCDR.

This commit is contained in:
Stefan Monnier
2003-04-17 21:44:50 +00:00
parent 2adfdbcbca
commit 52ad5ecc6c

View File

@@ -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);