emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 r117620: * lisp/emacs-lisp/bytecomp.el: Require c


From: Stefan Monnier
Subject: [Emacs-diffs] emacs-24 r117620: * lisp/emacs-lisp/bytecomp.el: Require cl-extra.
Date: Thu, 23 Oct 2014 13:31:28 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117620
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18804
committer: Stefan Monnier <address@hidden>
branch nick: emacs-24
timestamp: Thu 2014-10-23 09:31:20 -0400
message:
  * lisp/emacs-lisp/bytecomp.el: Require cl-extra.
  * lisp/emacs-lisp/cl-extra.el: Add missing provide.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/bytecomp.el    bytecomp.el-20091113204419-o5vbwnq5f7feedwu-492
  lisp/emacs-lisp/cl-extra.el    clextra.el-20091113204419-o5vbwnq5f7feedwu-611
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-10-22 13:38:47 +0000
+++ b/lisp/ChangeLog    2014-10-23 13:31:20 +0000
@@ -1,3 +1,8 @@
+2014-10-23  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
+       * emacs-lisp/cl-extra.el: Add missing provide.
+
 2014-10-22  Stefan Monnier  <address@hidden>
 
        * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2014-10-22 13:38:47 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2014-10-23 13:31:20 +0000
@@ -120,7 +120,11 @@
 (require 'backquote)
 (require 'macroexp)
 (require 'cconv)
-(require 'cl-lib)
+
+;; During bootstrap, cl-loaddefs.el is not created yet, so loading cl-lib
+;; doesn't setup autoloads for things like cl-every, which is why we have to
+;; require cl-extra instead (bug#18804).
+(require 'cl-extra)
 
 (or (fboundp 'defsubst)
     ;; This really ought to be loaded already!

=== modified file 'lisp/emacs-lisp/cl-extra.el'
--- a/lisp/emacs-lisp/cl-extra.el       2014-01-01 07:43:34 +0000
+++ b/lisp/emacs-lisp/cl-extra.el       2014-10-23 13:31:20 +0000
@@ -700,4 +700,5 @@
 ;; generated-autoload-file: "cl-loaddefs.el"
 ;; End:
 
+(provide 'cl-extra)
 ;;; cl-extra.el ends here


reply via email to

[Prev in Thread] Current Thread [Next in Thread]