]> git.eshelyaron.com Git - emacs.git/commitdiff
(mismatch): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Fri, 25 Jan 2002 18:52:53 +0000 (18:52 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 25 Jan 2002 18:52:53 +0000 (18:52 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl-seq.el

index 57bcfb004d608c85a1077efcb857a34c369db448..6f6e10f72211aa9c34aa7598961e52a9156c97c8 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * emacs-lisp/cl-seq.el (mismatch): Doc fix.
+
 2002-01-22  Stefan Monnier  <monnier@cs.yale.edu>
 
        * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
index bea91dc309895618ff68c711329af0f372ec1594..014bf4786dfbfd73334e45c0c4ff88bd09f857d5 100644 (file)
@@ -536,7 +536,7 @@ Keywords supported:  :key :start :end"
 (defun mismatch (cl-seq1 cl-seq2 &rest cl-keys)
   "Compare SEQ1 with SEQ2, return index of first mismatching element.
 Return nil if the sequences match.  If one sequence is a prefix of the
-other, the return value indicates the end of the shorted sequence.
+other, the return value indicates the end of the shorter sequence.
 Keywords supported:  :test :test-not :key :start1 :end1 :start2 :end2 :from-end"
   (cl-parsing-keywords (:test :test-not :key :from-end
                        (:start1 0) :end1 (:start2 0) :end2) ()