diff options
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index e7258c2da49..52c080388b7 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -529,7 +529,7 @@ SEQUENCE must be a sequence of numbers or markers." (apply #'max (seq-into sequence 'list))) (defun seq--count-successive (pred sequence) - "Return the number of successive elements for which (PRED element) is non-nil in SEQUENCE." + "Count successive elements for which (PRED element) is non-nil in SEQUENCE." (let ((n 0) (len (seq-length sequence))) (while (and (< n len) @@ -538,7 +538,7 @@ SEQUENCE must be a sequence of numbers or markers." n)) (defun seq--make-pcase-bindings (args) - "Return a list of bindings of the variables in ARGS to the elements of a sequence." + "Return list of bindings of the variables in ARGS to the elements of a sequence." (let ((bindings '()) (index 0) (rest-marker nil)) |