SCM Repository
[smlnj] / sml / trunk / sml-mode / sml-proc.el |
Diff of /sml/trunk/sml-mode/sml-proc.el
Parent Directory
|
Revision Log
|
Patch
revision 341, Fri Jun 18 19:10:12 1999 UTC | revision 342, Sat Jun 19 09:26:38 1999 UTC | |
---|---|---|
# | Line 234 | Line 234 |
234 | ("\\(Error\\|Warning:\\) in '\\(.+\\)', line \\([0-9]+\\)" 2 3) | ("\\(Error\\|Warning:\\) in '\\(.+\\)', line \\([0-9]+\\)" 2 3) |
235 | ;; Moscow ML | ;; Moscow ML |
236 | ("File \"\\([^\"]+\\)\", line \\([0-9]+\\)\\(-\\([0-9]+\\)\\)?, characters \\([0-9]+\\)-\\([0-9]+\\):" 1 2 5) | ("File \"\\([^\"]+\\)\", line \\([0-9]+\\)\\(-\\([0-9]+\\)\\)?, characters \\([0-9]+\\)-\\([0-9]+\\):" 1 2 5) |
237 | ;; SML/NJ | ;; SML/NJ: the file-pattern is restricted to no-spaces to avoid |
238 | ("[-= ]*\\(.+\\):\\([0-9]+\\)\\.\\([0-9]+\\)\\(-\\([0-9]+\\)\\.\\([0-9]+\\)\\)? \\(Error\\|Warning\\): .*" 1 sml-make-error 2 3 5 6) | ;; pathological behavior with very long lines. |
239 | ;; SML/NJ's exceptions | ("^[-= ]*\\([^ ]+\\):\\([0-9]+\\)\\.\\([0-9]+\\)\\(-\\([0-9]+\\)\\.\\([0-9]+\\)\\)? \\(Error\\|Warning\\): .*" 1 sml-make-error 2 3 5 6) |
240 | (" +\\(raised at: \\)?\\(.+\\):\\([0-9]+\\)\\.\\([0-9]+\\)\\(-\\([0-9]+\\)\\.\\([0-9]+\\)\\)" 2 sml-make-error 3 4 6 7))) | ;; SML/NJ's exceptions: see above. |
241 | ("^ +\\(raised at: \\)?\\([^ ]+\\):\\([0-9]+\\)\\.\\([0-9]+\\)\\(-\\([0-9]+\\)\\.\\([0-9]+\\)\\)" 2 sml-make-error 3 4 6 7))) | |
242 | ||
243 | (defvar sml-error-regexp nil | (defvar sml-error-regexp nil |
244 | "*Regexp for matching \(the start of\) an error message.") | "*Regexp for matching \(the start of\) an error message.") |
|
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |