diff options
| author | Miles Bader | 2001-12-06 15:27:53 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-12-06 15:27:53 +0000 |
| commit | c299126f7f6a349fbabba838ef11fd31f01a3eb8 (patch) | |
| tree | 063bd723e9cc24784bb74cb47854a47e8f02529d | |
| parent | ebbaf4e3aff76ae4820f6622ff0d9865c670afb0 (diff) | |
| download | emacs-c299126f7f6a349fbabba838ef11fd31f01a3eb8.tar.gz emacs-c299126f7f6a349fbabba838ef11fd31f01a3eb8.zip | |
(compilation-error-regexp-alist): Added regexps for RXP.
From Reto Stamm <reto@xilinx.com>.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e5a5c011d10..958c0a79fb0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-12-07 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist): Added | ||
| 4 | regexps for RXP. From Reto Stamm <reto@xilinx.com>. | ||
| 5 | |||
| 1 | 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression): | 8 | * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression): |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 7e046c3ee03..c09a35fd9be 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -357,6 +357,16 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) | |||
| 357 | ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 | 357 | ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 |
| 358 | (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" | 358 | (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" |
| 359 | 1 2 3) | 359 | 1 2 3) |
| 360 | |||
| 361 | ;; RXP - GPL XML validator at http://www.cogsci.ed.ac.uk/~richard/rxp.html: | ||
| 362 | ;; Error: Mismatched end tag: expected </geroup>, got </group> | ||
| 363 | ;; in unnamed entity at line 71 char 8 of file:///home/reto/test/group.xml | ||
| 364 | ("Error:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" | ||
| 365 | 3 1 2) | ||
| 366 | ;; Warning: Start tag for undeclared element geroup | ||
| 367 | ;; in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml | ||
| 368 | ("Warning:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" | ||
| 369 | 3 1 2) | ||
| 360 | ) | 370 | ) |
| 361 | 371 | ||
| 362 | "Alist that specifies how to match errors in compiler output. | 372 | "Alist that specifies how to match errors in compiler output. |