emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 66fec8b: Bump version of seq.el to 1.5


From: Nicolas Petton
Subject: [Emacs-diffs] master 66fec8b: Bump version of seq.el to 1.5
Date: Mon, 27 Apr 2015 21:26:52 +0000

branch: master
commit 66fec8bec4a7333b3d1c6d58b046a62b50bde3d2
Author: Nicolas Petton <address@hidden>
Commit: Nicolas Petton <address@hidden>

    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.
---
 lisp/emacs-lisp/seq.el |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 0050ff0..2f3f519 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -4,7 +4,7 @@
 
 ;; Author: Nicolas Petton <address@hidden>
 ;; Keywords: sequences
-;; Version: 1.4
+;; Version: 1.5
 ;; Package: seq
 
 ;; Maintainer: address@hidden
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]