; lisp/emacs-lisp/seq.el: Explain why we don't use cl-lib here

This commit is contained in:
Noam Postavsky 2020-03-07 18:45:23 -05:00
parent 3cbf4cb796
commit b16ba4041d

View file

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