]> git.eshelyaron.com Git - emacs.git/commitdiff
* compilation.txt: Add one more error message for msft (Bug#4100).
authorChong Yidong <cyd@stupidchicken.com>
Sun, 8 Nov 2009 16:30:52 +0000 (16:30 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 8 Nov 2009 16:30:52 +0000 (16:30 +0000)
etc/ChangeLog
etc/compilation.txt
lisp/ChangeLog
lisp/progmodes/compile.el

index f109df9fbfc942c43a88fc9253f0a232924282c8..763c9dc78f742d9af6020fec986920c9fb35d374 100644 (file)
@@ -1,3 +1,7 @@
+2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * compilation.txt: Add one more error message for msft (Bug#4100).
+
 2009-10-09  Karl Fogel  <karl.fogel@red-bean.com>
 
        * NEWS: Document bookmark.el at 2008-06-25T16:51:33Z!monnier@iro.umontreal.ca format upgrade.  (Bug#3375)
index 27c98de51e07fe60014ea69f0b1d5179215d4a90..6ee90ae4bb5af6f61d9cbd5f59a598d60dc4e774 100644 (file)
@@ -269,6 +269,7 @@ made it more strict about the error message that follows.
 
 keyboard handler.c(537) : warning C4005: 'min' : macro redefinition
 d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if'
+d:\tmp\test.c(1145) : see declaration of 'nsRefPtr'
 
 
 * Open Watcom
index aa45dbc1c68642e1700dee8c700a4d5eaa888be5..d353fdf7832598c9e3af9eccb7b38b28fa441af8 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
+
+       * progmodes/compile.el (compilation-error-regexp-alist-alist):
+       Handle "see declaration of" MSFT statements (Bug#4100).
+
 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-advice-make-auto-save-file-name)
index b12e18a1eaf10f70acc5946d5c749efed0520a4a..91bfcf01beef1c7f1cb955e70b0d9a2eb5bd1435 100644 (file)
@@ -297,9 +297,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
      " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2)
 
     (msft
-     ;; AFAWK, The message may be a "warning", "error", or "fatal error".
-     "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
-: \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4))
+     ;; The message may be a "warning", "error", or "fatal error" with
+     ;; an error code, or "see declaration of" without an error code.
+     "^ *\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
+: \\(?:see declaration\\|\\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:\\)"
+     2 3 nil (4))
 
     (omake
      ;; "omake -P" reports "file foo changed"