diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-11 12:18:04 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-11 12:18:04 +0200 |
commit | bebf39f292f1963ab980497248a18d8035708d1a (patch) | |
tree | 2713a47e24a28f44c68392091efe0c1eac79699c /lisp/emacs-lisp | |
parent | 8ab9102950e9476c0d0d1cbecfd7c1dd22141a5f (diff) | |
download | emacs-bebf39f292f1963ab980497248a18d8035708d1a.tar.gz emacs-bebf39f292f1963ab980497248a18d8035708d1a.tar.bz2 emacs-bebf39f292f1963ab980497248a18d8035708d1a.zip |
Autoload named-let
* lisp/emacs-lisp/subr-x.el (named-let): Autoload `named-let' for
easier use (bug#56473).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/subr-x.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index 5159e8784a5..5037ae47e83 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -290,6 +290,7 @@ it makes no sense to convert it to a string using (set-buffer source-buffer) (replace-buffer-contents tmp-buffer max-secs max-costs))))))))) +;;;###autoload (defmacro named-let (name bindings &rest body) "Looping construct taken from Scheme. Like `let', bind variables in BINDINGS and then evaluate BODY, |