diff options
| author | Eli Zaretskii | 2002-01-25 18:47:33 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-01-25 18:47:33 +0000 |
| commit | d22f8da480cc4307f4ababa76732645b431c3fa7 (patch) | |
| tree | 73f8f261e21abb27589b52969ed176a50ee1744d | |
| parent | 818cd248c3a22df7517554a00fa065e77eecf788 (diff) | |
| download | emacs-d22f8da480cc4307f4ababa76732645b431c3fa7.tar.gz emacs-d22f8da480cc4307f4ababa76732645b431c3fa7.zip | |
(mismatch): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-seq.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9c32c66bc66..cdc2e283ddd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * emacs-lisp/cl-seq.el (mismatch): Doc fix. | ||
| 4 | |||
| 3 | Support for more than 8 colors on character terminals: | 5 | Support for more than 8 colors on character terminals: |
| 4 | 6 | ||
| 5 | * term/rxvt.el: New file. | 7 | * term/rxvt.el: New file. |
diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el index bea91dc3098..014bf4786df 100644 --- a/lisp/emacs-lisp/cl-seq.el +++ b/lisp/emacs-lisp/cl-seq.el | |||
| @@ -536,7 +536,7 @@ Keywords supported: :key :start :end" | |||
| 536 | (defun mismatch (cl-seq1 cl-seq2 &rest cl-keys) | 536 | (defun mismatch (cl-seq1 cl-seq2 &rest cl-keys) |
| 537 | "Compare SEQ1 with SEQ2, return index of first mismatching element. | 537 | "Compare SEQ1 with SEQ2, return index of first mismatching element. |
| 538 | Return nil if the sequences match. If one sequence is a prefix of the | 538 | Return nil if the sequences match. If one sequence is a prefix of the |
| 539 | other, the return value indicates the end of the shorted sequence. | 539 | other, the return value indicates the end of the shorter sequence. |
| 540 | Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end" | 540 | Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end" |
| 541 | (cl-parsing-keywords (:test :test-not :key :from-end | 541 | (cl-parsing-keywords (:test :test-not :key :from-end |
| 542 | (:start1 0) :end1 (:start2 0) :end2) () | 542 | (:start1 0) :end1 (:start2 0) :end2) () |