diff options
| author | Stefan Monnier | 2022-11-18 10:45:29 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2022-11-18 10:45:29 -0500 |
| commit | 985ec6b26ebd724ff0e7d1045d2c315df3d3c05c (patch) | |
| tree | 8ddef8551d1c72bd74316f91083fb5b69d2b0a92 | |
| parent | 4506b005ab15e2d27996dac87e0f91dd0d4f91cb (diff) | |
| download | emacs-985ec6b26ebd724ff0e7d1045d2c315df3d3c05c.tar.gz emacs-985ec6b26ebd724ff0e7d1045d2c315df3d3c05c.zip | |
* lisp/emacs-lisp/bytecomp.el (byte-compile-dynamic-variable-bind): Typo
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 3637 | (byte-compile-out base-op tmp))) | 3637 | (byte-compile-out base-op tmp))) |
| 3638 | 3638 | ||
| 3639 | (defun byte-compile-dynamic-variable-bind (var) | 3639 | (defun byte-compile-dynamic-variable-bind (var) |
| 3640 | "Generate code to bind the lexical variable VAR to the top-of-stack value." | 3640 | "Generate code to bind the dynamic variable VAR to the top-of-stack value." |
| 3641 | (byte-compile-check-variable var 'let-bind) | 3641 | (byte-compile-check-variable var 'let-bind) |
| 3642 | (push var byte-compile-bound-variables) | 3642 | (push var byte-compile-bound-variables) |
| 3643 | (byte-compile-dynamic-variable-op 'byte-varbind var)) | 3643 | (byte-compile-dynamic-variable-op 'byte-varbind var)) |