mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Bump version of seq.el to 1.5
* lisp/emacs-lisp/seq.el (seq-doseq): Remove undocumented return value from seq-doseq. Bump version number of seq.el.
This commit is contained in:
parent
579db5085b
commit
66fec8bec4
1 changed files with 2 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Nicolas Petton <nicolas@petton.fr>
|
||||
;; Keywords: sequences
|
||||
;; Version: 1.4
|
||||
;; Version: 1.5
|
||||
;; Package: seq
|
||||
|
||||
;; Maintainer: emacs-devel@gnu.org
|
||||
|
|
@ -63,9 +63,7 @@ Evaluate BODY with VAR bound to each element of SEQ, in turn.
|
|||
(prog1 (seq-elt ,seq ,index)
|
||||
(setq ,index (+ ,index 1)))
|
||||
(pop ,index))))
|
||||
,@body))
|
||||
;; FIXME: Do we really want to support this?
|
||||
,@(cddr spec))))
|
||||
,@body)))))
|
||||
|
||||
(defun seq-drop (seq n)
|
||||
"Return a subsequence of SEQ without its first N elements.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue