diff options
author | Noam Postavsky <npostavs@gmail.com> | 2020-03-07 18:45:23 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2020-03-07 18:45:23 -0500 |
commit | b16ba4041db928826df5f58e9bfac9fb38208145 (patch) | |
tree | 24110732d70e08962c38ca7eb3971ec184c766af /lisp/emacs-lisp | |
parent | 3cbf4cb79600ade39a186f31448e56e0e6fdd364 (diff) | |
download | emacs-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.el | 4 |
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. |