emacs-diffs
[Top][All Lists]
Advanced

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

master 58fc160: * lisp/emacs-lisp/comp.el (comp-accept-and-process-async


From: Andrea Corallo
Subject: master 58fc160: * lisp/emacs-lisp/comp.el (comp-accept-and-process-async-output): Fix regexp.
Date: Mon, 26 Apr 2021 10:11:31 -0400 (EDT)

branch: master
commit 58fc16063c452d8dc0198b949ff8c00e84942b4f
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * lisp/emacs-lisp/comp.el (comp-accept-and-process-async-output): Fix 
regexp.
---
 lisp/emacs-lisp/comp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index fd8a8c6..eebb77d 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -3878,7 +3878,7 @@ processes from `comp-async-compilations'"
         (save-excursion
           (accept-process-output process)
           (goto-char (or comp-last-scanned-async-output (point-min)))
-          (while (re-search-forward "^.*+?\\(?:Error\\|Warning\\): .*$"
+          (while (re-search-forward "^.*?\\(?:Error\\|Warning\\): .*$"
                                     nil t)
             (display-warning 'comp (match-string 0)))
           (setq comp-last-scanned-async-output (point-max))))



reply via email to

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