aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-05-13 19:02:31 -0400
committerGlenn Morris2015-05-13 19:02:31 -0400
commit912d4a4935c2ef0854df2b709ccd00710415ff1d (patch)
tree0aec0db1f8af77b1a333ad7357f426eb11a44e0c
parent37ab2245f27d83f0faa3c0d9277088433bc4efaf (diff)
downloademacs-912d4a4935c2ef0854df2b709ccd00710415ff1d.tar.gz
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.
-rw-r--r--lisp/emacs-lisp/cl-lib.el7
-rw-r--r--lisp/emacs-lisp/cl-seq.el2
2 files changed, 6 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."
731;;; Miscellaneous. 731;;; Miscellaneous.
732 732
733(provide 'cl-lib) 733(provide 'cl-lib)
734(or (load "cl-loaddefs" 'noerror 'quiet) 734(unless (load "cl-loaddefs" 'noerror 'quiet)
735 ;; When bootstrapping, cl-loaddefs hasn't been built yet! 735 ;; When bootstrapping, cl-loaddefs hasn't been built yet!
736 (require 'cl-macs)) 736 (require 'cl-macs)
737 (require 'cl-seq))
737 738
738;; Local variables: 739;; Local variables:
739;; byte-compile-dynamic: t 740;; byte-compile-dynamic: t
diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el
index 5624accf66a..3aea67ad11b 100644
--- a/lisp/emacs-lisp/cl-seq.el
+++ b/lisp/emacs-lisp/cl-seq.el
@@ -1018,4 +1018,6 @@ Atoms are compared by `eql'; cons cells are compared recursively.
1018;; generated-autoload-file: "cl-loaddefs.el" 1018;; generated-autoload-file: "cl-loaddefs.el"
1019;; End: 1019;; End:
1020 1020
1021(provide 'cl-seq)
1022
1021;;; cl-seq.el ends here 1023;;; cl-seq.el ends here