diff options
author | Yuuki Harano <masm+github@masm11.me> | 2020-12-14 01:52:10 +0900 |
---|---|---|
committer | Yuuki Harano <masm+github@masm11.me> | 2020-12-14 01:52:10 +0900 |
commit | 3e30047ce3a81dd0879973012abbf570d3215dfd (patch) | |
tree | c7c10e82f2ff37705356a0c25b98d92c603c7983 /lisp/emacs-lisp/thunk.el | |
parent | aea5dbec2514811fb2e1cc44b2347a976a5b7de8 (diff) | |
parent | fe50a8b9ba79b4ac14a3a352d8bf84eaee4f2122 (diff) | |
download | emacs-3e30047ce3a81dd0879973012abbf570d3215dfd.tar.gz emacs-3e30047ce3a81dd0879973012abbf570d3215dfd.tar.bz2 emacs-3e30047ce3a81dd0879973012abbf570d3215dfd.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'lisp/emacs-lisp/thunk.el')
-rw-r--r-- | lisp/emacs-lisp/thunk.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/thunk.el b/lisp/emacs-lisp/thunk.el index c8e483e9a4a..cd42152527e 100644 --- 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)) - (nreverse bindings) + (reverse bindings) :initial-value (macroexp-progn body))) ;; (defalias 'lazy-let #'thunk-let) |