diff options
| -rw-r--r-- | lisp/progmodes/compile.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index ba4b9b6778c..0541257b0a6 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -286,6 +286,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) | |||
| 286 | ;; EPC F90 compiler: | 286 | ;; EPC F90 compiler: |
| 287 | ;; Error 24 at (2:progran.f90) : syntax error | 287 | ;; Error 24 at (2:progran.f90) : syntax error |
| 288 | ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1) | 288 | ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1) |
| 289 | |||
| 290 | ;; Sun F90 error messages: | ||
| 291 | ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 | ||
| 292 | (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" | ||
| 293 | 1 2 3) | ||
| 289 | ) | 294 | ) |
| 290 | "Alist that specifies how to match errors in compiler output. | 295 | "Alist that specifies how to match errors in compiler output. |
| 291 | Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) | 296 | Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) |