mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(compilation-error-regexp-alist): Don't include colon and space after
a file name as part of the name.
This commit is contained in:
parent
6e7bf73c7d
commit
ccc41714e7
2 changed files with 14 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue