]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Add regexp
authorRichard M. Stallman <rms@gnu.org>
Fri, 26 Apr 1996 19:45:16 +0000 (19:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 26 Apr 1996 19:45:16 +0000 (19:45 +0000)
for Microsoft VC++ error messages containing drive letters.

lisp/progmodes/compile.el

index 552bff20c99864e7bd4613edabce01c0d49db6f0..c485f2169ceef4cdde3e3efc649e1900fb8d6f9b 100644 (file)
@@ -119,6 +119,11 @@ or when it is used with \\[next-error] or \\[compile-goto-error].")
 \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
 :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5)
 
+    ;; Microsoft C/C++:
+    ;;  keyboard.c(537) : warning C4005: 'min' : macro redefinition
+    ;;  d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if'
+    ("\n\\(\\([a-zA-Z]:\\)?[^:( \t\n-]+\\)[:(][ \t]*\\([0-9]+\\)[:) \t]" 1 3)
+
     ;; Borland C++:
     ;;  Error ping.c 15: Unable to open include file 'sys/types.h'
     ;;  Warning ping.c 68: Call to function 'func' with no prototype