diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2024-07-08 14:30:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-07-08 14:30:37 +0200 |
commit | ef7364b070e416810de0861c78dbdedf183ee067 (patch) | |
tree | 2642815bb66f625e203df11d0c14a15000f00565 /lisp/emacs-lisp/macroexp.el | |
parent | 5fe1ae0e843b9f3d0bac5a2d28c23c7210caee9d (diff) | |
download | emacs-ef7364b070e416810de0861c78dbdedf183ee067.tar.gz emacs-ef7364b070e416810de0861c78dbdedf183ee067.tar.bz2 emacs-ef7364b070e416810de0861c78dbdedf183ee067.zip |
Checkdoc fixes in `emacs-lisp/*.el`
* lisp/emacs-lisp/bytecomp.el (byte-compile-free-vars-warn)
(byte-compile-out):
* lisp/emacs-lisp/eldoc.el (eldoc-documentation-functions):
* lisp/emacs-lisp/find-func.el (find-ert-deftest-regexp):
* lisp/emacs-lisp/macroexp.el (byte-compile-form-stack):
Checkdoc fixes.
Diffstat (limited to 'lisp/emacs-lisp/macroexp.el')
-rw-r--r-- | lisp/emacs-lisp/macroexp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el index bb4797cac8b..4524eccc7ef 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -37,7 +37,7 @@ most deeply nested form. Normally a form is manually pushed onto the list at the beginning of `byte-compile-form', etc., and manually popped off at its end. This is to preserve the data in it in the event of a -condition-case handling a signaled error.") +`condition-case' handling a signaled error.") (defmacro macroexp--with-extended-form-stack (expr &rest body) "Evaluate BODY with EXPR pushed onto `byte-compile-form-stack'." |