]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/macroexp.el (macroexp-warn-and-return): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Thu, 22 Jul 2021 07:31:14 +0000 (10:31 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 22 Jul 2021 07:31:14 +0000 (10:31 +0300)
lisp/emacs-lisp/macroexp.el

index 48311f56de251d625d8af2343875611577e27983..61c1ea490f044ec116adabc3912546c7d3be0382 100644 (file)
@@ -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)