(equalp): Correctly compare last elt of two lists.
This commit is contained in:
parent
178047284a
commit
e5b633cf70
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ strings case-insensitively."
|
|||
((numberp x)
|
||||
(and (numberp y) (= x y)))
|
||||
((consp x)
|
||||
(while (and (consp x) (consp y) (equalp (cl-pop x) (cl-pop y))))
|
||||
(while (and (consp x) (consp y) (equalp (car x) (car y)))
|
||||
(setq x (cdr x) y (cdr y)))
|
||||
(and (not (consp x)) (equalp x y)))
|
||||
((vectorp x)
|
||||
(and (vectorp y) (= (length x) (length y))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue