aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Pfeiffer2004-04-01 10:48:40 +0000
committerDaniel Pfeiffer2004-04-01 10:48:40 +0000
commite5c644da1287c3dbcbc39999d2f969e5e3e71bd4 (patch)
treed62a41b31d625872793bd379d4451f7aa59d8895
parent51c8ad03e04265489438cb50e6af26935fffe446 (diff)
downloademacs-e5c644da1287c3dbcbc39999d2f969e5e3e71bd4.tar.gz
emacs-e5c644da1287c3dbcbc39999d2f969e5e3e71bd4.zip
message deletion note added to M-x compile
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog10
2 files changed, 14 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c04c52155c3..e6e6e9b5d77 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -95,6 +95,10 @@ recognized as warnings or informational come in orange or green, instead of
95red. Informational messages are by default skipped with `next-error' 95red. Informational messages are by default skipped with `next-error'
96(controlled by `compilation-skip-threshold'). 96(controlled by `compilation-skip-threshold').
97 97
98Location data is collected on the fly as the *compilation* buffer changes.
99This means you could modify messages to make them point to different files.
100This also means you can not go to locations of messages you may have deleted.
101
98The variable `compilation-error-regexp-alist' has now become customizable. If 102The variable `compilation-error-regexp-alist' has now become customizable. If
99you had added your own regexps to this, you'll probably need to include a 103you had added your own regexps to this, you'll probably need to include a
100leading `^', otherwise they'll match anywhere on a line. There is now also a 104leading `^', otherwise they'll match anywhere on a line. There is now also a
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b9fae62468..354012dc488 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
2
3 * compile.el (compilation-current-error): New var.
4 (compilation-setup, compile-mouse-goto-error)
5 (compile-goto-error, next-error): Use it.
6 (compilation-skip-to-next-location): Default to t, which gives
7 contiguous skipping like old compile (where this was redundant).
8 (compilation-next-error): Prevent previous-* commands from moving
9 back to message at or just before point.
10
12004-04-01 Nick Roberts <nick@nick.uklinux.net> 112004-04-01 Nick Roberts <nick@nick.uklinux.net>
2 12
3 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler) 13 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)