]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Added regexps for RXP.
authorMiles Bader <miles@gnu.org>
Thu, 6 Dec 2001 15:27:53 +0000 (15:27 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 6 Dec 2001 15:27:53 +0000 (15:27 +0000)
From Reto Stamm <reto@xilinx.com>.

lisp/ChangeLog
lisp/progmodes/compile.el

index e5a5c011d10a3a57caac91d9e549c520756dc389..958c0a79fb0167b20299497a2fd5f75e69c1cd9e 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-07  Miles Bader  <miles@gnu.org>
+
+       * progmodes/compile.el (compilation-error-regexp-alist): Added
+       regexps for RXP.  From Reto Stamm <reto@xilinx.com>.
+
 2001-12-05  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
index 7e046c3ee033be4ba466f42307003adb5769af33..c09a35fd9be29195d101c0569dc66fbf3db51b52 100644 (file)
@@ -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 </geroup>, got </group>
+    ;; 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.