comparison lisp/progmodes/compile.el @ 48279:5335f4b4c07e

(compilation-error-regexp-alist): Don't include colon and space after a file name as part of the name.
author Richard M. Stallman <rms@gnu.org>
date Wed, 13 Nov 2002 11:49:53 +0000
parents 1ee4b312fef0
children e57b9088b4a1
comparison
equal deleted inserted replaced
48278:b82c4ff4d201 48279:5335f4b4c07e
247 \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6) 247 \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6)
248 248
249 ;; GNU utilities with precise locations (line and columns), 249 ;; GNU utilities with precise locations (line and columns),
250 ;; possibly ranges: 250 ;; possibly ranges:
251 ;; foo.c:8.23-9.1: error message 251 ;; foo.c:8.23-9.1: error message
252 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ 252 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
253 \\([0-9]+\\)\\.\\([0-9]+\\)\ 253 \\([0-9]+\\)\\.\\([0-9]+\\)\
254 -\\([0-9]+\\)\\.\\([0-9]+\\)\ 254 -\\([0-9]+\\)\\.\\([0-9]+\\)\
255 :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5. 255 :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5.
256 ;; foo.c:8.23-45: error message 256 ;; foo.c:8.23-45: error message
257 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ 257 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
258 \\([0-9]+\\)\\.\\([0-9]+\\)\ 258 \\([0-9]+\\)\\.\\([0-9]+\\)\
259 -\\([0-9]+\\)\ 259 -\\([0-9]+\\)\
260 :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4. 260 :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4.
261 ;; foo.c:8-45.3: error message 261 ;; foo.c:8-45.3: error message
262 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ 262 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
263 \\([0-9]+\\)\ 263 \\([0-9]+\\)\
264 -\\([0-9]+\\)\\.\\([0-9]+\\)\ 264 -\\([0-9]+\\)\\.\\([0-9]+\\)\
265 :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4. 265 :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4.
266 ;; foo.c:8.23: error message 266 ;; foo.c:8.23: error message
267 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ 267 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
268 \\([0-9]+\\)\\.\\([0-9]+\\)\ 268 \\([0-9]+\\)\\.\\([0-9]+\\)\
269 :" 1 2 3) 269 :" 1 2 3)
270 ;; foo.c:8-23: error message 270 ;; foo.c:8-23: error message
271 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ 271 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
272 \\([0-9]+\\)\ 272 \\([0-9]+\\)\
273 -\\([0-9]+\\)\ 273 -\\([0-9]+\\)\
274 :" 1 2 nil);; When ending points are supported, add line = 3. 274 :" 1 2 nil);; When ending points are supported, add line = 3.
275 275
276 ;; Microsoft C/C++: 276 ;; Microsoft C/C++: