Mercurial > emacs
changeset 9868:85bdb1b310f8
(compilation-error-regexp-alist): Add an element for Irix 5.2 warnings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 09 Nov 1994 12:46:54 +0000 |
parents | 57ee6c3a0a3c |
children | ae7a27dc719d |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Wed Nov 09 12:38:31 1994 +0000 +++ b/lisp/progmodes/compile.el Wed Nov 09 12:46:54 1994 +0000 @@ -183,6 +183,10 @@ ;; 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)