]> git.eshelyaron.com Git - emacs.git/commitdiff
Bump version of seq.el to 1.5
authorNicolas Petton <nicolas@petton.fr>
Mon, 27 Apr 2015 21:24:01 +0000 (23:24 +0200)
committerNicolas Petton <nicolas@petton.fr>
Mon, 27 Apr 2015 21:26:33 +0000 (23:26 +0200)
* lisp/emacs-lisp/seq.el (seq-doseq): Remove undocumented return value
  from seq-doseq.  Bump version number of seq.el.

lisp/emacs-lisp/seq.el

index 0050ff0a30348989b7ec296b01542054d3da7ef3..2f3f519e986851d8f09ed7b66be4a61fd26033d0 100644 (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.