From: Eli Zaretskii Date: Thu, 17 Nov 2022 06:48:14 +0000 (+0200) Subject: ; * lisp/emacs-lisp/seq.el (seq-filter): Fix typo in doc string. X-Git-Tag: emacs-29.0.90~1616^2~126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=43cca14a9e8cef3eda877ca3dc6a6a9c57263a33;p=emacs.git ; * lisp/emacs-lisp/seq.el (seq-filter): Fix typo in doc string. --- diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 37b843bcca2..1645da2eb0b 100644 --- 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)