]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el (byte-compile-dynamic-variable-bind): Typo
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 18 Nov 2022 15:45:29 +0000 (10:45 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 18 Nov 2022 15:45:29 +0000 (10:45 -0500)
lisp/emacs-lisp/bytecomp.el

index c81c42e042870362e7e2e938d90455ddde861f2c..f176e769bf58908d8c911f69d4a5046f69510707 100644 (file)
@@ -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))