diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-07-22 10:31:14 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-07-22 10:31:14 +0300 |
commit | 3edc4fb5d8931f49ec939c97107c393d554edf90 (patch) | |
tree | 3f49653cc57d4d036d8bbe9e551379cb5dbea139 /lisp/emacs-lisp | |
parent | a82855732019622ebe1cfac9055d84366f3608f2 (diff) | |
download | emacs-3edc4fb5d8931f49ec939c97107c393d554edf90.tar.gz emacs-3edc4fb5d8931f49ec939c97107c393d554edf90.tar.bz2 emacs-3edc4fb5d8931f49ec939c97107c393d554edf90.zip |
; * lisp/emacs-lisp/macroexp.el (macroexp-warn-and-return): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/macroexp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el index 48311f56de2..61c1ea490f0 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -146,11 +146,11 @@ Other uses risk returning non-nil value that point to the wrong file." (define-obsolete-function-alias 'macroexp--warn-and-return #'macroexp-warn-and-return "28.1") (defun macroexp-warn-and-return (msg form &optional category compile-only) - "Return code equivalent to FORM by labeled with warning MSG. + "Return code equivalent to FORM labeled with warning MSG. CATEGORY is the category of the warning, like the categories that can appear in `byte-compile-warnings'. -COMPILE-ONLY if non-nil indicates that no warning should be emitted if -the code is executed without being compiled first." +COMPILE-ONLY non-nil means no warning should be emitted if the code +is executed without being compiled first." (cond ((null msg) form) ((macroexp-compiling-p) |