diff options
| author | Richard M. Stallman | 1994-11-09 12:46:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-11-09 12:46:54 +0000 |
| commit | 4cd90f206fd7605439d9ed69d45b306eebc28069 (patch) | |
| tree | ddd01dfbbbccdce473d3d815dbd7c5ceb7a28b56 | |
| parent | f90531cc3f9d3fb3629bd4f3d11095910bffd270 (diff) | |
| download | emacs-4cd90f206fd7605439d9ed69d45b306eebc28069.tar.gz emacs-4cd90f206fd7605439d9ed69d45b306eebc28069.zip | |
(compilation-error-regexp-alist): Add an element for Irix 5.2 warnings.
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
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) | |||
| 183 | ;; foo.adb:2:1: Unit name does not match file name | 183 | ;; foo.adb:2:1: Unit name does not match file name |
| 184 | ("\n\\([^ \n\t:]+\\):\\([0-9]+\\):\\([0-9]+\\)[: \t]" 1 2 3) | 184 | ("\n\\([^ \n\t:]+\\):\\([0-9]+\\):\\([0-9]+\\)[: \t]" 1 2 3) |
| 185 | 185 | ||
| 186 | ;; SGI Irix 5.2 compiler warnings | ||
| 187 | ;; cfe: Warning 835: vpr_tiff.c, line 65: No prototype for the call to rint | ||
| 188 | ("ning [0-9]+: \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 1 3) | ||
| 189 | |||
| 186 | ;; GNU message with program name and column number. | 190 | ;; GNU message with program name and column number. |
| 187 | ("\n\\([^ \n\t:]+\\):\\([^ \n\t:]+\\):\ | 191 | ("\n\\([^ \n\t:]+\\):\\([^ \n\t:]+\\):\ |
| 188 | \\([0-9]+\\):\\([0-9]+\\)[: \t]" 2 3 4) | 192 | \\([0-9]+\\):\\([0-9]+\\)[: \t]" 2 3 4) |