summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/seq.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r--lisp/emacs-lisp/seq.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 0050ff0a303..2f3f519e986 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -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.