]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Extend first regexp to handle Borland C++
authorRoland McGrath <roland@gnu.org>
Mon, 13 Jun 1994 23:27:44 +0000 (23:27 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 13 Jun 1994 23:27:44 +0000 (23:27 +0000)
msgs: "Warning" or "Error" before file name.

lisp/progmodes/compile.el

index 1ab5589a28c4bba76f0ae333356f02f5e23b8235..76e71ec8215162ffdbcebc4901f257592f0b0be0 100644 (file)
@@ -108,11 +108,15 @@ or when it is used with \\[next-error] or \\[compile-goto-error].")
     ;;         foo.c:8: error message
     ;; or HP-UX 7.0 fc:
     ;;         foo.f          :16    some horrible error message
+    ;; or 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
     ;;
     ;; We'll insist that the number be followed by a colon or closing
     ;; paren, because otherwise this matches just about anything
     ;; containing a number with spaces around it.
-    ("\n\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)[:) \t]" 1 2)
+    ("\n\\(Error\\|Warning\\)[ \t]*\\([^:( \t\n]+\\)\
+[:(][ \t]*\\([0-9]+\\)[:) \t]" 2 3)
 
     ;; 4.3BSD lint pass 2
     ;;         strcmp: variable # of args. llib-lc(359)  ::  /usr/src/foo/foo.c(8)