mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-13 17:40:22 -08:00
* lisp/emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
This commit is contained in:
parent
ef501ef01c
commit
88ecaf8fa5
3 changed files with 4 additions and 3 deletions
|
|
@ -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")))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue