aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1995-05-26 16:24:57 +0000
committerRoland McGrath1995-05-26 16:24:57 +0000
commit54de3248dc7678310e02aa194065f1c0015ede2e (patch)
treeca72a8c1727f34cfa4dcd5d910d0b44958405e7e
parentf803a6b161bbcadde1b1d392034beacb8edf7708 (diff)
downloademacs-54de3248dc7678310e02aa194065f1c0015ede2e.tar.gz
emacs-54de3248dc7678310e02aa194065f1c0015ede2e.zip
(compilation-error-regexp-alist): In "IBM C/C++ Tools" regexp, disallow
leading spaces and disallow whitespace chars within the file name.
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 6c2caef14a6..2395264e8e1 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -188,7 +188,7 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced. 188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.
189 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered. 189 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
190 ;; foo.c(5:5) : error EDC0350: Syntax error. 190 ;; foo.c(5:5) : error EDC0350: Syntax error.
191 ("\n *\\([^(]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) 191 ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
192 ) 192 )
193 "Alist that specifies how to match errors in compiler output. 193 "Alist that specifies how to match errors in compiler output.
194Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 194Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])