emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
Date: Thu, 06 Dec 2001 10:24:09 -0500

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.244 
emacs/lisp/progmodes/compile.el:1.245
*** emacs/lisp/progmodes/compile.el:1.244       Tue Nov 13 23:23:45 2001
--- emacs/lisp/progmodes/compile.el     Thu Dec  6 10:24:09 2001
***************
*** 357,362 ****
--- 357,372 ----
      ;; 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]