diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-07-17 08:58:25 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-07-17 08:58:25 -0400 |
commit | 88ecaf8fa55e7bd0a76c9ea0bda93dbc063f3036 (patch) | |
tree | 05ecdd9809aac60f7e3b776058526f9d4f023d80 /lisp/emacs-lisp/cl-macs.el | |
parent | ef501ef01cd3d3168da15cf5426f1be119fc90c8 (diff) | |
download | emacs-88ecaf8fa55e7bd0a76c9ea0bda93dbc063f3036.tar.gz emacs-88ecaf8fa55e7bd0a76c9ea0bda93dbc063f3036.tar.bz2 emacs-88ecaf8fa55e7bd0a76c9ea0bda93dbc063f3036.zip |
* lisp/emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 31d20f274ed..70d907a14c1 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1547,7 +1547,7 @@ second list (or made unbound if VALUES is shorter than SYMBOLS); then the BODY forms are executed and their result is returned. This is much like a `let' form, except that the list of symbols can be computed at run-time." (declare (indent 2) (debug (form form body))) - (let ((bodyfun (make-symbol "body")) + (let ((bodyfun (make-symbol "cl--progv-body")) (binds (make-symbol "binds")) (syms (make-symbol "syms")) (vals (make-symbol "vals"))) |