diff lisp/progmodes/compile.el @ 71667:a1e8435263b7

(compilation-error-regexp-alist-alist) <gnu>: Use shy regexp. Fix incorrect backref to potentially unmatched group.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 07 Jul 2006 15:17:35 +0000
parents 07b8f7d57642
children fcbb34640a44
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Fri Jul 07 15:14:47 2006 +0000
+++ b/lisp/progmodes/compile.el	Fri Jul 07 15:17:35 2006 +0000
@@ -224,9 +224,9 @@
 
     (gnu
      "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\
-\\([/.]*[a-zA-Z]:?[^ \t\n:]*\\|{standard input}\\): ?\
-\\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\
-\\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\
+\\(.+?\\): ?\
+\\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\
+\\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\
 \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\
  *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\)\\)?"
      1 (2 . 5) (4 . 6) (7 . 8))