]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Add an element for Irix 5.2 warnings.
authorRichard M. Stallman <rms@gnu.org>
Wed, 9 Nov 1994 12:46:54 +0000 (12:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 9 Nov 1994 12:46:54 +0000 (12:46 +0000)
lisp/progmodes/compile.el

index 9e1c710037920f7eb481d15372bd75b9727182de..4b4334ab6cd75507d1aa734d2e344ab8f5857194 100644 (file)
@@ -183,6 +183,10 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
     ;; foo.adb:2:1: Unit name does not match file name
     ("\n\\([^ \n\t:]+\\):\\([0-9]+\\):\\([0-9]+\\)[: \t]" 1 2 3)
 
+    ;; SGI Irix 5.2 compiler warnings
+    ;; cfe: Warning 835: vpr_tiff.c, line 65: No prototype for the call to rint
+    ("ning [0-9]+: \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 1 3)
+
     ;; GNU message with program name and column number.
     ("\n\\([^ \n\t:]+\\):\\([^ \n\t:]+\\):\
 \\([0-9]+\\):\\([0-9]+\\)[: \t]" 2 3 4)