]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/emacs-lisp/cl.el (cl--function-convert): Work for cl-flet and cl-labels
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 27 Jan 2015 03:15:49 +0000 (03:15 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 27 Jan 2015 03:15:49 +0000 (03:15 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl.el

index ff352a25eea7617f1b9cab0b114b46da6e7a27b5..96b7f63a26ad2c0a93e4667252dd982acba09957 100644 (file)
@@ -1,5 +1,9 @@
-2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * emacs-lisp/cl.el (cl--function-convert): Run cl--labels-convert
+       for the case cl-flet or cl-labels form is wrapped with lexical-let.
 
+2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/cl-generic.el (cl--generic-method): New struct.
        (cl--generic): The method-table is now a (list-of cl--generic-method).
index da3eab73fc4289d742b3a82f6049ff105d61406c..1cd7bd76b0e4f39266b601389f478b661de7a865 100644 (file)
@@ -342,6 +342,8 @@ The two cases that are handled are:
 - renaming of F when it's a function defined via `cl-labels' or `labels'."
   (require 'cl-macs)
   (declare-function cl--expr-contains-any "cl-macs" (x y))
+  (declare-function cl--labels-convert "cl-macs" (f))
+  (defvar cl--labels-convert-cache)
   (cond
    ;; ¡¡Big Ugly Hack!! We can't use a compiler-macro because those are checked
    ;; *after* handling `function', but we want to stop macroexpansion from
@@ -374,13 +376,8 @@ The two cases that are handled are:
           (setq cl--function-convert-cache (cons newf res))
           res))))
    (t
-    (let ((found (assq f macroexpand-all-environment)))
-      (if (and found (ignore-errors
-                       (eq (cadr (cl-caddr found)) 'cl-labels-args)))
-          (cadr (cl-caddr (cl-cadddr found)))
-        (let ((res `(function ,f)))
-          (setq cl--function-convert-cache (cons f res))
-          res))))))
+    (setq cl--labels-convert-cache cl--function-convert-cache)
+    (cl--labels-convert f))))
 
 (defmacro lexical-let (bindings &rest body)
   "Like `let', but lexically scoped.