diff options
| author | Richard M. Stallman | 2002-11-13 11:51:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-11-13 11:51:04 +0000 |
| commit | ccc41714e7defece3cc6f422271fa5e89b4ffc73 (patch) | |
| tree | 358a023a2755cb0e2acbac12355432596cfaeec8 | |
| parent | 6e7bf73c7d63c3a7cc333461614f9a91591525dc (diff) | |
| download | emacs-ccc41714e7defece3cc6f422271fa5e89b4ffc73.tar.gz emacs-ccc41714e7defece3cc6f422271fa5e89b4ffc73.zip | |
(compilation-error-regexp-alist): Don't include colon and space after
a file name as part of the name.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 705cf62c965..b2ef0240c50 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2002-11-13 Tim Van Holder <tim.vanholder@anubex.com> (tiny change) | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist): Don't | ||
| 4 | include colon and space after a file name as part of the name. | ||
| 5 | |||
| 6 | 2002-11-13 Richard M. Stallman <rms@gnu.org> | ||
| 7 | |||
| 8 | * gud.el (gdb): Undo 10-26 change. | ||
| 9 | |||
| 1 | 2002-11-13 Kenichi Handa <handa@m17n.org> | 10 | 2002-11-13 Kenichi Handa <handa@m17n.org> |
| 2 | 11 | ||
| 3 | * replace.el (occur-engine): Set buffer-file-coding-system of | 12 | * 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].") | |||
| 249 | ;; GNU utilities with precise locations (line and columns), | 249 | ;; GNU utilities with precise locations (line and columns), |
| 250 | ;; possibly ranges: | 250 | ;; possibly ranges: |
| 251 | ;; foo.c:8.23-9.1: error message | 251 | ;; foo.c:8.23-9.1: error message |
| 252 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ | 252 | ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ |
| 253 | \\([0-9]+\\)\\.\\([0-9]+\\)\ | 253 | \\([0-9]+\\)\\.\\([0-9]+\\)\ |
| 254 | -\\([0-9]+\\)\\.\\([0-9]+\\)\ | 254 | -\\([0-9]+\\)\\.\\([0-9]+\\)\ |
| 255 | :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5. | 255 | :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5. |
| 256 | ;; foo.c:8.23-45: error message | 256 | ;; foo.c:8.23-45: error message |
| 257 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ | 257 | ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ |
| 258 | \\([0-9]+\\)\\.\\([0-9]+\\)\ | 258 | \\([0-9]+\\)\\.\\([0-9]+\\)\ |
| 259 | -\\([0-9]+\\)\ | 259 | -\\([0-9]+\\)\ |
| 260 | :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4. | 260 | :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4. |
| 261 | ;; foo.c:8-45.3: error message | 261 | ;; foo.c:8-45.3: error message |
| 262 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ | 262 | ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ |
| 263 | \\([0-9]+\\)\ | 263 | \\([0-9]+\\)\ |
| 264 | -\\([0-9]+\\)\\.\\([0-9]+\\)\ | 264 | -\\([0-9]+\\)\\.\\([0-9]+\\)\ |
| 265 | :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4. | 265 | :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4. |
| 266 | ;; foo.c:8.23: error message | 266 | ;; foo.c:8.23: error message |
| 267 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ | 267 | ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ |
| 268 | \\([0-9]+\\)\\.\\([0-9]+\\)\ | 268 | \\([0-9]+\\)\\.\\([0-9]+\\)\ |
| 269 | :" 1 2 3) | 269 | :" 1 2 3) |
| 270 | ;; foo.c:8-23: error message | 270 | ;; foo.c:8-23: error message |
| 271 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)\ | 271 | ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\ |
| 272 | \\([0-9]+\\)\ | 272 | \\([0-9]+\\)\ |
| 273 | -\\([0-9]+\\)\ | 273 | -\\([0-9]+\\)\ |
| 274 | :" 1 2 nil);; When ending points are supported, add line = 3. | 274 | :" 1 2 nil);; When ending points are supported, add line = 3. |