aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/cl-extra.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index a9201444b0d..6eadbdb4ca9 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -84,8 +84,8 @@ strings case-insensitively."
84 (cond ((eq x y) t) 84 (cond ((eq x y) t)
85 ((stringp x) 85 ((stringp x)
86 (and (stringp y) (= (length x) (length y)) 86 (and (stringp y) (= (length x) (length y))
87 (or (equal x y) 87 (or (string-equal x y)
88 (equal (downcase x) (downcase y))))) ; lazy but simple! 88 (string-equal (downcase x) (downcase y))))) ; lazy but simple!
89 ((numberp x) 89 ((numberp x)
90 (and (numberp y) (= x y))) 90 (and (numberp y) (= x y)))
91 ((consp x) 91 ((consp x)