]> git.eshelyaron.com Git - emacs.git/commitdiff
(equalp): Use string-equal on strings.
authorErik Naggum <erik@naggum.no>
Fri, 8 Mar 1996 18:30:12 +0000 (18:30 +0000)
committerErik Naggum <erik@naggum.no>
Fri, 8 Mar 1996 18:30:12 +0000 (18:30 +0000)
lisp/emacs-lisp/cl-extra.el

index a9201444b0d5e3168ce49c4fc46bd141576b7f11..6eadbdb4ca9d3195d28f89b79c32c0ecda2c7613 100644 (file)
@@ -84,8 +84,8 @@ strings case-insensitively."
   (cond ((eq x y) t)
        ((stringp x)
         (and (stringp y) (= (length x) (length y))
-             (or (equal x y)
-                 (equal (downcase x) (downcase y)))))   ; lazy but simple!
+             (or (string-equal x y)
+                 (string-equal (downcase x) (downcase y)))))   ; lazy but simple!
        ((numberp x)
         (and (numberp y) (= x y)))
        ((consp x)