# HG changeset patch # User Stefan Monnier # Date 1152285455 0 # Node ID a1e8435263b77a67afbfc5f804851fdd492a91c7 # Parent 743b3d3139681153901dddaad348bcaba3054c7c (compilation-error-regexp-alist-alist) : Use shy regexp. Fix incorrect backref to potentially unmatched group. diff -r 743b3d313968 -r a1e8435263b7 lisp/progmodes/compile.el --- 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))