# HG changeset patch # User Roland McGrath # Date 801505497 0 # Node ID d8fba932b2891f6bde58ac86c0fa2c9db7b7e3a6 # Parent 89ccf3b3208d32e1a8f5b4334575134409021a35 (compilation-error-regexp-alist): In "IBM C/C++ Tools" regexp, disallow leading spaces and disallow whitespace chars within the file name. diff -r 89ccf3b3208d -r d8fba932b289 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Fri May 26 05:28:13 1995 +0000 +++ b/lisp/progmodes/compile.el Fri May 26 16:24:57 1995 +0000 @@ -188,7 +188,7 @@ ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced. ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered. ;; foo.c(5:5) : error EDC0350: Syntax error. - ("\n *\\([^(]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) + ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) ) "Alist that specifies how to match errors in compiler output. Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])