diff options
author | Glenn Morris <rgm@gnu.org> | 2015-05-13 19:02:31 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-05-13 19:02:31 -0400 |
commit | 912d4a4935c2ef0854df2b709ccd00710415ff1d (patch) | |
tree | 0aec0db1f8af77b1a333ad7357f426eb11a44e0c /lisp/emacs-lisp/cl-lib.el | |
parent | 37ab2245f27d83f0faa3c0d9277088433bc4efaf (diff) | |
download | emacs-912d4a4935c2ef0854df2b709ccd00710415ff1d.tar.gz emacs-912d4a4935c2ef0854df2b709ccd00710415ff1d.tar.bz2 emacs-912d4a4935c2ef0854df2b709ccd00710415ff1d.zip |
Fix bootstrap (void function cl-member).
* lisp/emacs-lisp/cl-lib.el: Load cl-seq if no cl-loaddefs file.
* lisp/emacs-lisp/cl-seq.el: Provide a feature.
Diffstat (limited to 'lisp/emacs-lisp/cl-lib.el')
-rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 6b43c126130..b6f3a793be6 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -731,9 +731,10 @@ If ALIST is non-nil, the new pairs are prepended to it." ;;; Miscellaneous. (provide 'cl-lib) -(or (load "cl-loaddefs" 'noerror 'quiet) - ;; When bootstrapping, cl-loaddefs hasn't been built yet! - (require 'cl-macs)) +(unless (load "cl-loaddefs" 'noerror 'quiet) + ;; When bootstrapping, cl-loaddefs hasn't been built yet! + (require 'cl-macs) + (require 'cl-seq)) ;; Local variables: ;; byte-compile-dynamic: t |