diff options
| author | Alex Schroeder | 2003-08-17 09:49:42 +0000 |
|---|---|---|
| committer | Alex Schroeder | 2003-08-17 09:49:42 +0000 |
| commit | e1f540f294ccacf2035a9e67154dac3aff741f7a (patch) | |
| tree | 481c2e32ffd08594712ed6734e8e767641adca1b | |
| parent | 735bbd126e1d51f5936bb42571e3acf8bce2e89e (diff) | |
| download | emacs-e1f540f294ccacf2035a9e67154dac3aff741f7a.tar.gz emacs-e1f540f294ccacf2035a9e67154dac3aff741f7a.zip | |
2003-08-14 Thu Jari Aalto <jari.aalto@poboxes.com>
* progmodes/compile.el (compilation-error-regexp-alist):
Added Java ANt error detection as described in document
http://ant.apache.org/faq.html
| -rw-r--r-- | lisp/progmodes/compile.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index a65e04eb1d2..3effe71d30b 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -437,6 +437,14 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) | |||
| 437 | ;; in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml | 437 | ;; in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml |
| 438 | ("Warning:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" | 438 | ("Warning:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" |
| 439 | 3 1 2) | 439 | 3 1 2) |
| 440 | |||
| 441 | ;; See http://ant.apache.org/faq.html | ||
| 442 | ;; Ant Java: works for jikes | ||
| 443 | ("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):\\([0-9]+\\):[0-9]+:[0-9]+:" 1 2 3) | ||
| 444 | |||
| 445 | ;; Ant Java: works for javac | ||
| 446 | ("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):" 1 2) | ||
| 447 | |||
| 440 | ) | 448 | ) |
| 441 | 449 | ||
| 442 | "Alist that specifies how to match errors in compiler output. | 450 | "Alist that specifies how to match errors in compiler output. |