emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Eli Zaretskii
Subject: master b02a7ad: ; * lisp/emacs-lisp/comp.el (batch-native-compile): Doc fix.
Date: Tue, 28 Sep 2021 04:18:46 -0400 (EDT)

branch: master
commit b02a7ad2631b6ac3a95e53cb26a0aa1b1ab7e98a
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; * lisp/emacs-lisp/comp.el (batch-native-compile): Doc fix.
---
 lisp/emacs-lisp/comp.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 4060fc9..7c93ebd 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]