# HG changeset patch # User Richard M. Stallman # Date 1037188193 0 # Node ID 5335f4b4c07ee063f0632ee2619d6b18f92d223a # Parent b82c4ff4d2013519e8875509bc7f89e53805c17c (compilation-error-regexp-alist): Don't include colon and space after a file name as part of the name. diff -r b82c4ff4d201 -r 5335f4b4c07e lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Wed Nov 13 11:40:15 2002 +0000 +++ b/lisp/progmodes/compile.el Wed Nov 13 11:49:53 2002 +0000 @@ -249,26 +249,26 @@ ;; 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.