summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-09-28 11:18:17 +0300
committerEli Zaretskii <eliz@gnu.org>2021-09-28 11:18:17 +0300
commitb02a7ad2631b6ac3a95e53cb26a0aa1b1ab7e98a (patch)
tree2c56f4c9addf671a0e3b305346b51d85ab02a3a7 /lisp/emacs-lisp
parent7c21d2c7f56c82a72850408db6681dfbc3e45e95 (diff)
downloademacs-b02a7ad2631b6ac3a95e53cb26a0aa1b1ab7e98a.tar.gz
emacs-b02a7ad2631b6ac3a95e53cb26a0aa1b1ab7e98a.tar.bz2
emacs-b02a7ad2631b6ac3a95e53cb26a0aa1b1ab7e98a.zip
; * lisp/emacs-lisp/comp.el (batch-native-compile): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 4060fc97d04..7c93ebd6300 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -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)