From: Stefan Monnier Date: Fri, 18 Nov 2022 15:45:29 +0000 (-0500) Subject: * lisp/emacs-lisp/bytecomp.el (byte-compile-dynamic-variable-bind): Typo X-Git-Tag: emacs-29.0.90~1616^2~45 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=985ec6b26ebd724ff0e7d1045d2c315df3d3c05c;p=emacs.git * lisp/emacs-lisp/bytecomp.el (byte-compile-dynamic-variable-bind): Typo --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index c81c42e0428..f176e769bf5 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3637,7 +3637,7 @@ lambda-expression." (byte-compile-out base-op tmp))) (defun byte-compile-dynamic-variable-bind (var) - "Generate code to bind the lexical variable VAR to the top-of-stack value." + "Generate code to bind the dynamic variable VAR to the top-of-stack value." (byte-compile-check-variable var 'let-bind) (push var byte-compile-bound-variables) (byte-compile-dynamic-variable-op 'byte-varbind var))