From c299126f7f6a349fbabba838ef11fd31f01a3eb8 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Thu, 6 Dec 2001 15:27:53 +0000 Subject: [PATCH] (compilation-error-regexp-alist): Added regexps for RXP. From Reto Stamm . --- lisp/ChangeLog | 5 +++++ lisp/progmodes/compile.el | 10 ++++++++++ 2 files changed, 15 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e5a5c011d10..958c0a79fb0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-12-07 Miles Bader + + * progmodes/compile.el (compilation-error-regexp-alist): Added + regexps for RXP. From Reto Stamm . + 2001-12-05 Eli Zaretskii * 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) ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" 1 2 3) + + ;; RXP - GPL XML validator at http://www.cogsci.ed.ac.uk/~richard/rxp.html: + ;; Error: Mismatched end tag: expected , got + ;; in unnamed entity at line 71 char 8 of file:///home/reto/test/group.xml + ("Error:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" + 3 1 2) + ;; Warning: Start tag for undeclared element geroup + ;; in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml + ("Warning:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)" + 3 1 2) ) "Alist that specifies how to match errors in compiler output. -- 2.39.2