From: Karl Heuer Date: Mon, 14 Dec 1998 03:06:46 +0000 (+0000) Subject: (compilation-error-regexp-alist): Fix regexp to match X-Git-Tag: emacs-20.4~1084 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e228c7e2d4cc93e458cc1ecba561da69f8a7d317;p=emacs.git (compilation-error-regexp-alist): Fix regexp to match "ChangeLog:1:1998-12-09 ..." --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 0be2b759bf9..74ee72dc459 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -157,7 +157,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") ;; paren, because otherwise this matches just about anything ;; containing a number with spaces around it. ("\\([-a-zA-Z._]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\ -\\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6) +\\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6) ;; Microsoft C/C++: ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition