diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-01-28 08:18:50 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-01-28 08:18:50 -0500 |
commit | 9a17d246eabeb5a365bfebce5ec3862e42c8b132 (patch) | |
tree | deed0cd48688821a652025170f921ffaefba230d /lisp/emacs-lisp/cl.el | |
parent | 8a8bd38fedb89b2d04cca2419698813a22862c3b (diff) | |
download | emacs-9a17d246eabeb5a365bfebce5ec3862e42c8b132.tar.gz |
* lisp/emacs-lisp/cl.el (cl--function-convert): Simplify.
Diffstat (limited to 'lisp/emacs-lisp/cl.el')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 1b204631fb8..5da1cea6bb3 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -376,10 +376,7 @@ The two cases that are handled are: (setq cl--function-convert-cache (cons newf res)) res)))) (t - (setq cl--labels-convert-cache cl--function-convert-cache) - (prog1 - (cl--labels-convert f) - (setq cl--function-convert-cache cl--labels-convert-cache))))) + (cl--labels-convert f)))) (defmacro lexical-let (bindings &rest body) "Like `let', but lexically scoped. |