projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78607f2
)
* lisp/emacs-lisp/thunk.el (thunk-let*): Don't modify `bindings`
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 12 Dec 2020 00:26:43 +0000
(19:26 -0500)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 12 Dec 2020 00:26:43 +0000
(19:26 -0500)
lisp/emacs-lisp/thunk.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/thunk.el
b/lisp/emacs-lisp/thunk.el
index c8e483e9a4a6d4cfd095c482d08a4aa731a4044b..cd42152527eeaf60f13738907052112d6784d0de 100644
(file)
--- a/
lisp/emacs-lisp/thunk.el
+++ b/
lisp/emacs-lisp/thunk.el
@@
-122,7
+122,7
@@
Using `thunk-let' and `thunk-let*' requires `lexical-binding'."
(declare (indent 1) (debug let))
(cl-reduce
(lambda (expr binding) `(thunk-let (,binding) ,expr))
- (
n
reverse bindings)
+ (reverse bindings)
:initial-value (macroexp-progn body)))
;; (defalias 'lazy-let #'thunk-let)