1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 06:31:13 -08:00

* lisp/emacs-lisp/advice.el: Require `cl-lib' at run-time to fix

miscompilation of trace.el.
This commit is contained in:
Stefan Monnier 2012-11-08 09:36:47 -05:00
parent 4c1f6a5b9d
commit 32170f7ff2
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
miscompilation of trace.el.
2012-11-08 Glenn Morris <rgm@gnu.org>
* vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.

View file

@ -1709,7 +1709,8 @@
;; During a normal load this is a noop:
(require 'advice-preload "advice.el")
(require 'macroexp)
(eval-when-compile (require 'cl-lib))
;; At run-time also, since ad-do-advised-functions returns code that uses it.
(require 'cl-lib)
;; @@ Variable definitions:
;; ========================