projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed5022b
)
; * lisp/emacs-lisp/seq.el (seq-filter): Fix typo in doc string.
author
Eli Zaretskii
<eliz@gnu.org>
Thu, 17 Nov 2022 06:48:14 +0000
(08:48 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Thu, 17 Nov 2022 06:48:14 +0000
(08:48 +0200)
lisp/emacs-lisp/seq.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/seq.el
b/lisp/emacs-lisp/seq.el
index 37b843bcca29c174c1e4da9824fa1fbbb6096d58..1645da2eb0bcae89124522f24d0b5b1f2f0b2d8a 100644
(file)
--- a/
lisp/emacs-lisp/seq.el
+++ b/
lisp/emacs-lisp/seq.el
@@
-336,7
+336,7
@@
TYPE can be one of the following symbols: `vector', `string' or
;;;###autoload
(cl-defgeneric seq-filter (pred sequence)
- "Return a list of
the all
elements in SEQUENCE for which PRED returns non-nil."
+ "Return a list of
all the
elements in SEQUENCE for which PRED returns non-nil."
(let ((exclude (make-symbol "exclude")))
(delq exclude (seq-map (lambda (elt)
(if (funcall pred elt)