]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/comp.el (batch-native-compile): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Tue, 28 Sep 2021 08:18:17 +0000 (11:18 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 28 Sep 2021 08:18:17 +0000 (11:18 +0300)
lisp/emacs-lisp/comp.el

index 4060fc97d0498481fe8c60909f5efb34bdcff598..7c93ebd6300ecf12f95352e8e77d3ec08aa60946 100644 (file)
@@ -4192,10 +4192,11 @@ form, return the compiled function."
 
 ;;;###autoload
 (defun batch-native-compile ()
-  "Perform native compilation on remaining command-line arguments.
-Use this from the command line, with ‘-batch’;
-it won’t work in an interactive Emacs.
-Native compilation equivalent to `batch-byte-compile'."
+  "Perform batch native compilation of remaining command-line arguments.
+
+Native compilation equivalent of `batch-byte-compile'.
+Use this from the command line, with ‘-batch’; it won’t work
+in an interactive Emacs session."
   (comp-ensure-native-compiler)
   (cl-loop for file in command-line-args-left
            if (or (null byte+native-compile)