summaryrefslogtreecommitdiff
path: root/lisp/progmodes/compile.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-09 12:46:54 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-09 12:46:54 +0000
commitc2d9574ea4b5f3fd4c27cb0bb480cc7229ffac45 (patch)
tree2ed55ae7a24580ac118c28dbed0ef9c7ab9327ca /lisp/progmodes/compile.el
parenta5f24332056fdd05366c5543fd18f031a7dfa131 (diff)
downloademacs-c2d9574ea4b5f3fd4c27cb0bb480cc7229ffac45.tar.gz
(compilation-error-regexp-alist): Add an element for Irix 5.2 warnings.
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r--lisp/progmodes/compile.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 9e1c7100379..4b4334ab6cd 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -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)