1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

(compilation-error-regexp-alist): Fix regexp to match

"ChangeLog:1:1998-12-09 ..."
This commit is contained in:
Karl Heuer 1998-12-14 03:06:46 +00:00
parent 4044f85325
commit e228c7e2d4

View File

@ -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