]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/emacs-lisp/cl.el (cl--function-convert): Merge cache that cl--labels-convert...
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 27 Jan 2015 23:55:26 +0000 (23:55 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 27 Jan 2015 23:55:26 +0000 (23:55 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl.el

index 182d7705bb69cd82169e0669a4e013952ee4ed54..816a8cb6b43de0b49af01846dd4765113480608e 100644 (file)
@@ -1,3 +1,8 @@
+2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * emacs-lisp/cl.el (cl--function-convert):
+       Merge cache that cl--labels-convert adds (bug#19699).
+
 2015-01-27  Ivan Shmakov  <ivan@siamics.net>
 
        * tar-mode.el: Allow for adding new archive members.  (Bug#19274)
index 1cd7bd76b0e4f39266b601389f478b661de7a865..1b204631fb8ee9ab2a376dc2bf9f843051e20999 100644 (file)
@@ -377,7 +377,9 @@ The two cases that are handled are:
           res))))
    (t
     (setq cl--labels-convert-cache cl--function-convert-cache)
-    (cl--labels-convert f))))
+    (prog1
+       (cl--labels-convert f)
+      (setq cl--function-convert-cache cl--labels-convert-cache)))))
 
 (defmacro lexical-let (bindings &rest body)
   "Like `let', but lexically scoped.