diff options
| author | Richard M. Stallman | 1996-04-26 19:45:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-04-26 19:45:16 +0000 |
| commit | 0c43cc8912d644698bf615a92481062b5d353ba2 (patch) | |
| tree | dcbe61d1c80f4b0a31917d735792ad23e597a790 | |
| parent | 43a3bdccec5ce24ba5e299d70183879162dec66e (diff) | |
| download | emacs-0c43cc8912d644698bf615a92481062b5d353ba2.tar.gz emacs-0c43cc8912d644698bf615a92481062b5d353ba2.zip | |
(compilation-error-regexp-alist): Add regexp
for Microsoft VC++ error messages containing drive letters.
| -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 552bff20c99..c485f2169ce 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -119,6 +119,11 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 119 | \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\ | 119 | \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\ |
| 120 | :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5) | 120 | :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5) |
| 121 | 121 | ||
| 122 | ;; Microsoft C/C++: | ||
| 123 | ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition | ||
| 124 | ;; d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if' | ||
| 125 | ("\n\\(\\([a-zA-Z]:\\)?[^:( \t\n-]+\\)[:(][ \t]*\\([0-9]+\\)[:) \t]" 1 3) | ||
| 126 | |||
| 122 | ;; Borland C++: | 127 | ;; Borland C++: |
| 123 | ;; Error ping.c 15: Unable to open include file 'sys/types.h' | 128 | ;; Error ping.c 15: Unable to open include file 'sys/types.h' |
| 124 | ;; Warning ping.c 68: Call to function 'func' with no prototype | 129 | ;; Warning ping.c 68: Call to function 'func' with no prototype |