1
Fork 0
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:
Nicolas Petton 2015-04-27 23:24:01 +02:00
parent 579db5085b
commit 66fec8bec4

View file

@ -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.