; * lisp/emacs-lisp/comp.el (batch-native-compile): Doc fix.

This commit is contained in:
Eli Zaretskii 2021-09-28 11:18:17 +03:00
parent 7c21d2c7f5
commit b02a7ad263

View 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 wont 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 wont 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)