summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-04-26 15:59:06 +0200
committerAndrea Corallo <akrl@sdf.org>2021-04-26 16:00:03 +0200
commit58fc16063c452d8dc0198b949ff8c00e84942b4f (patch)
treed80608012def6cfde9c6033f6b3f00f2468ad35d /lisp/emacs-lisp
parentde80086b953e14ba80ec958eaf82c988a53877c0 (diff)
downloademacs-58fc16063c452d8dc0198b949ff8c00e84942b4f.tar.gz
emacs-58fc16063c452d8dc0198b949ff8c00e84942b4f.tar.bz2
emacs-58fc16063c452d8dc0198b949ff8c00e84942b4f.zip
* lisp/emacs-lisp/comp.el (comp-accept-and-process-async-output): Fix regexp.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index fd8a8c61cce..eebb77d993f 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))))