# HG changeset patch # User Miles Bader # Date 1007652249 0 # Node ID ab6cfeb406ab6432d3cd0c0dca1153049a4e7bc5 # Parent 722497ee769fe32c5dbb824bac05ab1aa6128b76 (compilation-error-regexp-alist): Added regexps for RXP. From Reto Stamm . diff -r 722497ee769f -r ab6cfeb406ab lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Thu Dec 06 14:22:57 2001 +0000 +++ b/lisp/progmodes/compile.el Thu Dec 06 15:24:09 2001 +0000 @@ -357,6 +357,16 @@ ;; 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.