diff options
| author | Nicolas Petton | 2016-03-29 12:42:42 +0200 |
|---|---|---|
| committer | Nicolas Petton | 2016-03-29 12:43:13 +0200 |
| commit | 6df158cf55132cf8766c57b3e8911eabe993f2d2 (patch) | |
| tree | 543e67e1350dfd42ad1a9d1a95901374abf2f20a | |
| parent | add035f502c7d2ba40966f18c52f22e827047b23 (diff) | |
| download | emacs-6df158cf55132cf8766c57b3e8911eabe993f2d2.tar.gz emacs-6df158cf55132cf8766c57b3e8911eabe993f2d2.zip | |
* lisp/emacs-lisp/seq.el: Require cl-lib instead of cl-extra
| -rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 89fad437427..92f0ad78566 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el | |||
| @@ -57,7 +57,7 @@ | |||
| 57 | ;;; Code: | 57 | ;;; Code: |
| 58 | 58 | ||
| 59 | (eval-when-compile (require 'cl-generic)) | 59 | (eval-when-compile (require 'cl-generic)) |
| 60 | (require 'cl-extra) ;; for cl-subseq | 60 | (require 'cl-lib) ;; for cl-subseq |
| 61 | 61 | ||
| 62 | (defmacro seq-doseq (spec &rest body) | 62 | (defmacro seq-doseq (spec &rest body) |
| 63 | "Loop over a sequence. | 63 | "Loop over a sequence. |