aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-01-14 15:41:34 +0000
committerStefan Monnier2008-01-14 15:41:34 +0000
commitdb0095e0f8b6d2ed1f624b2466ecef36721979bd (patch)
treed5552e001e0b3cb0343d84c1647303e604e01e15
parentba463d9eca5f05817eb843372ebc9e46ecbb471f (diff)
downloademacs-db0095e0f8b6d2ed1f624b2466ecef36721979bd.tar.gz
emacs-db0095e0f8b6d2ed1f624b2466ecef36721979bd.zip
(compilation-error-regexp-alist-alist):
Accept "fatal error" from MSFT. Reported by Jared Finder <jfinder@crypticstudios.com>.
-rw-r--r--lisp/ChangeLog33
-rw-r--r--lisp/progmodes/compile.el3
2 files changed, 22 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7c63ad22bef..e3da73d0175 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4 Accept "fatal error" from MSFT.
5 Reported by Jared Finder <jfinder@crypticstudios.com>.
6
12008-01-14 Dan Nicolaescu <dann@ics.uci.edu> 72008-01-14 Dan Nicolaescu <dann@ics.uci.edu>
2 8
3 * smerge-mode.el (smerge-auto): New function. 9 * smerge-mode.el (smerge-auto): New function.
@@ -17,9 +23,9 @@
17 23
182008-01-13 Martin Rudalics <rudalics@gmx.at> 242008-01-13 Martin Rudalics <rudalics@gmx.at>
19 25
20 * mail/rmail.el (rmail-convert-to-babyl-format): Remove 26 * mail/rmail.el (rmail-convert-to-babyl-format):
21 save-excursion to avoid infinite looping. Reported by: dnz 27 Remove save-excursion to avoid infinite looping.
22 <dnz@bk.ru>. 28 Reported by: dnz <dnz@bk.ru>.
23 29
242008-01-12 Glenn Morris <rgm@gnu.org> 302008-01-12 Glenn Morris <rgm@gnu.org>
25 31
@@ -157,7 +163,7 @@
157 (vc-status-current-file): Likewise. 163 (vc-status-current-file): Likewise.
158 (vc-ensure-vc-buffer): Understand vc-status mode. 164 (vc-ensure-vc-buffer): Understand vc-status mode.
159 165
160 * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". 166 * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
161 167
1622008-01-09 Glenn Morris <rgm@gnu.org> 1682008-01-09 Glenn Morris <rgm@gnu.org>
163 169
@@ -402,8 +408,7 @@
402 * vc-arch.el (vc-arch-root): Only set a property if the file is 408 * vc-arch.el (vc-arch-root): Only set a property if the file is
403 managed by this backend. 409 managed by this backend.
404 410
405 * vc-hg.el (vc-hg-state): Support the new status code for 411 * vc-hg.el (vc-hg-state): Support the new status code for up-to-date.
406 up-to-date.
407 412
4082008-01-04 Tassilo Horn <tassilo@member.fsf.org> 4132008-01-04 Tassilo Horn <tassilo@member.fsf.org>
409 414
@@ -413,8 +418,8 @@
413 418
414 * doc-view.el (doc-view-scroll-up-or-next-page) 419 * doc-view.el (doc-view-scroll-up-or-next-page)
415 (doc-view-scroll-down-or-previous-page): Use image-scroll-up and 420 (doc-view-scroll-down-or-previous-page): Use image-scroll-up and
416 image-scroll-down instead of the non-image equivalents. Don't 421 image-scroll-down instead of the non-image equivalents.
417 rely on a signalled condition but switch pages when scrolling 422 Don't rely on a signalled condition but switch pages when scrolling
418 doesn't change the vertical position anymore. 423 doesn't change the vertical position anymore.
419 (doc-view-mode-map): Remap scroll-{up,down} to 424 (doc-view-mode-map): Remap scroll-{up,down} to
420 image-scroll-{up,down}. 425 image-scroll-{up,down}.
@@ -432,7 +437,8 @@
432 * bs.el (bs--sort-by-mode, bs--get-mode-name): 437 * bs.el (bs--sort-by-mode, bs--get-mode-name):
433 * imenu.el (imenu-add-to-menubar): 438 * imenu.el (imenu-add-to-menubar):
434 * makesum.el (make-command-summary): 439 * makesum.el (make-command-summary):
435 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar, mouse-buffer-menu): 440 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
441 (mouse-buffer-menu):
436 * msb.el (msb--mode-menu-cond): 442 * msb.el (msb--mode-menu-cond):
437 * calc/calc-embed.el (calc-do-embedded): 443 * calc/calc-embed.el (calc-do-embedded):
438 * emacs-lisp/helper.el (Helper-describe-mode): 444 * emacs-lisp/helper.el (Helper-describe-mode):
@@ -447,7 +453,8 @@
447 * progmodes/ada-xref.el (ada-prj-find-prj-file): 453 * progmodes/ada-xref.el (ada-prj-find-prj-file):
448 * progmodes/ada-mode.el (comment-region): 454 * progmodes/ada-mode.el (comment-region):
449 * calendar/todo-mode.el (todo-insert-item): 455 * calendar/todo-mode.el (todo-insert-item):
450 * bookmark.el (bookmark-buffer-name): Test major-mode rather than mode-name. 456 * bookmark.el (bookmark-buffer-name):
457 Test major-mode rather than mode-name.
451 458
4522008-01-04 Richard Stallman <rms@gnu.org> 4592008-01-04 Richard Stallman <rms@gnu.org>
453 460
@@ -523,8 +530,8 @@
523 530
5242008-01-02 Karl Fogel <kfogel@red-bean.com> 5312008-01-02 Karl Fogel <kfogel@red-bean.com>
525 532
526 Change a return type, for greater extensibility. See 533 Change a return type, for greater extensibility.
527 http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html 534 See http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html
528 and its thread for discussion leading to this change. 535 and its thread for discussion leading to this change.
529 536
530 * emacs-cvs/lisp/bookmark.el: 537 * emacs-cvs/lisp/bookmark.el:
@@ -586,7 +593,7 @@
586 593
5872008-01-01 Eric S. Raymond <esr@snark.thyrsus.com> 5942008-01-01 Eric S. Raymond <esr@snark.thyrsus.com>
588 595
589 * vc-svn.el (vc-svn-parse-status): Set the 'unregisted property 596 * vc-svn.el (vc-svn-parse-status): Set the `unregisted' property
590 correctly. 597 correctly.
591 598
592 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call 599 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 772d35f94f0..f02a7756419 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -272,8 +272,9 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
272 " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) 272 " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2)
273 273
274 (msft 274 (msft
275 ;; AFAWK, The message may be a "warning", "error", or "fatal error".
275 "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ 276 "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
276: \\(?:error\\|warnin\\(g\\)\\) C[0-9]+:" 2 3 nil (4)) 277: \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4))
277 278
278 (oracle 279 (oracle
279 "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\ 280 "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\