]> git.eshelyaron.com Git - emacs.git/commitdiff
* Rename comp-async-report-warnings-errors
authorAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 12:54:32 +0000 (14:54 +0200)
committerAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 15:16:08 +0000 (17:16 +0200)
* lisp/emacs-lisp/comp.el (native-comp-async-report-warnings-errors)
(comp-accept-and-process-async-output): Rename
comp-async-report-warnings-errors →
native-comp-async-report-warnings-errors.

lisp/emacs-lisp/comp.el

index 24b65424a1860fa0de485268dc85d8e56b5a29c4..908a71846ae21e3e7d9e96e435208466db4ffd82 100644 (file)
@@ -134,7 +134,7 @@ Used to modify the compiler environment."
   :risky t
   :version "28.1")
 
-(defcustom comp-async-report-warnings-errors t
+(defcustom native-comp-async-report-warnings-errors t
   "Whether to report warnings and errors from asynchronous native compilation.
 
 When native compilation happens asynchronously, it can produce
@@ -3873,7 +3873,7 @@ processes from `comp-async-compilations'"
 (make-variable-buffer-local 'comp-last-scanned-async-output)
 (defun comp-accept-and-process-async-output (process)
   "Accept PROCESS output and check for diagnostic messages."
-  (if comp-async-report-warnings-errors
+  (if native-comp-async-report-warnings-errors
       (with-current-buffer (process-buffer process)
         (save-excursion
           (accept-process-output process)