]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Don't include colon and space after
authorRichard M. Stallman <rms@gnu.org>
Wed, 13 Nov 2002 11:51:04 +0000 (11:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 13 Nov 2002 11:51:04 +0000 (11:51 +0000)
a file name as part of the name.

lisp/ChangeLog
lisp/progmodes/compile.el

index 705cf62c96566d5c04d2c293c045a1e7dda3e7ff..b2ef0240c5063318dbfca2d72afb0b855eb28402 100644 (file)
@@ -1,3 +1,12 @@
+2002-11-13  Tim Van Holder  <tim.vanholder@anubex.com>  (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  <rms@gnu.org>
+
+       * gud.el (gdb): Undo 10-26 change.
+
 2002-11-13  Kenichi Handa  <handa@m17n.org>
 
        * replace.el (occur-engine): Set buffer-file-coding-system of
index 4c727cdfd19d79fd7dda6e3b1ee4382c250eb24d..6af4ca95e7f19944fab33405337514a1507410a9 100644 (file)
@@ -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.