comparison lisp/progmodes/compile.el @ 79785:1f0710a42481

Kevin Ryde <user42 at zip.com.au> (compilation-error-regexp-alist-alist): For perl, allow "during global destruction" at end.
author Glenn Morris <rgm@gnu.org>
date Tue, 08 Jan 2008 07:50:05 +0000
parents a1342e6e097a
children f41bdf06d470
comparison
equal deleted inserted replaced
79784:29cecd4f960a 79785:1f0710a42481
271 "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\ 271 "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\
272 \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\ 272 \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\
273 \\(?:,\\| in\\| of\\)? file \\(.*?\\):?$" 273 \\(?:,\\| in\\| of\\)? file \\(.*?\\):?$"
274 3 1 2) 274 3 1 2)
275 275
276 ;; "during global destruction": This comes out under "use
277 ;; warnings" in recent perl when breaking circular references
278 ;; during program or thread exit.
276 (perl 279 (perl
277 " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\)" 1 2) 280 " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \
281 during global destruction\\.$\\)" 1 2)
278 282
279 (rxp 283 (rxp
280 "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\ 284 "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\
281 \\([0-9]+\\) of file://\\(.+\\)" 285 \\([0-9]+\\) of file://\\(.+\\)"
282 4 2 3 (1)) 286 4 2 3 (1))