summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2020-03-07 18:45:23 -0500
committerNoam Postavsky <npostavs@gmail.com>2020-03-07 18:45:23 -0500
commitb16ba4041db928826df5f58e9bfac9fb38208145 (patch)
tree24110732d70e08962c38ca7eb3971ec184c766af /lisp/emacs-lisp
parent3cbf4cb79600ade39a186f31448e56e0e6fdd364 (diff)
downloademacs-b16ba4041db928826df5f58e9bfac9fb38208145.tar.gz
emacs-b16ba4041db928826df5f58e9bfac9fb38208145.tar.bz2
emacs-b16ba4041db928826df5f58e9bfac9fb38208145.zip
; lisp/emacs-lisp/seq.el: Explain why we don't use cl-lib here
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/seq.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 629a7a5fb30..e3037a71901 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -58,6 +58,10 @@
(eval-when-compile (require 'cl-generic))
+;; We used to use some sequence functions from cl-lib, but this
+;; dependency was swapped around so that it will be easier to make
+;; seq.el preloaded in the future. See also Bug#39761#26.
+
(defmacro seq-doseq (spec &rest body)
"Loop over a sequence.
Evaluate BODY with VAR bound to each element of SEQUENCE, in turn.