* lisp/emacs-lisp/comp.el (comp-accept-and-process-async-output): Fix regexp.
This commit is contained in:
parent
de80086b95
commit
58fc16063c
1 changed files with 1 additions and 1 deletions
|
@ -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))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue