From: Richard M. Stallman Date: Wed, 13 Nov 2002 11:51:04 +0000 (+0000) Subject: (compilation-error-regexp-alist): Don't include colon and space after X-Git-Tag: ttn-vms-21-2-B4~12492 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ccc41714e7defece3cc6f422271fa5e89b4ffc73;p=emacs.git (compilation-error-regexp-alist): Don't include colon and space after a file name as part of the name. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 705cf62c965..b2ef0240c50 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2002-11-13 Tim Van Holder (tiny change) + + * progmodes/compile.el (compilation-error-regexp-alist): Don't + include colon and space after a file name as part of the name. + +2002-11-13 Richard M. Stallman + + * gud.el (gdb): Undo 10-26 change. + 2002-11-13 Kenichi Handa * replace.el (occur-engine): Set buffer-file-coding-system of diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 4c727cdfd19..6af4ca95e7f 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -249,26 +249,26 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") ;; GNU utilities with precise locations (line and columns), ;; possibly ranges: ;; foo.c:8.23-9.1: error message - ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ \\([0-9]+\\)\\.\\([0-9]+\\)\ -\\([0-9]+\\)\\.\\([0-9]+\\)\ :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5. ;; foo.c:8.23-45: error message - ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ \\([0-9]+\\)\\.\\([0-9]+\\)\ -\\([0-9]+\\)\ :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4. ;; foo.c:8-45.3: error message - ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ \\([0-9]+\\)\ -\\([0-9]+\\)\\.\\([0-9]+\\)\ :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4. ;; foo.c:8.23: error message - ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ \\([0-9]+\\)\\.\\([0-9]+\\)\ :" 1 2 3) ;; foo.c:8-23: error message - ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ \\([0-9]+\\)\ -\\([0-9]+\\)\ :" 1 2 nil);; When ending points are supported, add line = 3.