diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-04-23 17:28:47 -0700 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-04-23 17:28:47 -0700 |
commit | 543e3c63acb78ab926600e9184b4b9e4a39303e0 (patch) | |
tree | 7eebd8d99f6638fc0a947fb6040226f932a9d439 | |
parent | 80d982d7ad6bbaab40731b60756da0f126311be0 (diff) | |
download | emacs-543e3c63acb78ab926600e9184b4b9e4a39303e0.tar.gz |
Require gv early to break eager macro-expansion cycles
* lisp/emacs-lisp/cl.el (gv): Require gv early to break eager
macro-expansion cycles.
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/emacs-lisp/cl.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3e10f1f16fe..72b688d45bb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-04-24 Daniel Colascione <dancol@dancol.org> + + * emacs-lisp/cl.el (gv): Require gv early to break eager + macro-expansion cycles. + 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca> * simple.el (region-active-p): Check there's a mark (bug#17324). diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index fc09ff004e1..d99166e41c1 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -29,6 +29,7 @@ (require 'cl-lib) (require 'macroexp) +(require 'gv) ;; (defun cl--rename () ;; (let ((vdefs ()) |