diff options
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 10 |
2 files changed, 14 insertions, 0 deletions
| @@ -95,6 +95,10 @@ recognized as warnings or informational come in orange or green, instead of | |||
| 95 | red. Informational messages are by default skipped with `next-error' | 95 | red. Informational messages are by default skipped with `next-error' |
| 96 | (controlled by `compilation-skip-threshold'). | 96 | (controlled by `compilation-skip-threshold'). |
| 97 | 97 | ||
| 98 | Location data is collected on the fly as the *compilation* buffer changes. | ||
| 99 | This means you could modify messages to make them point to different files. | ||
| 100 | This also means you can not go to locations of messages you may have deleted. | ||
| 101 | |||
| 98 | The variable `compilation-error-regexp-alist' has now become customizable. If | 102 | The variable `compilation-error-regexp-alist' has now become customizable. If |
| 99 | you had added your own regexps to this, you'll probably need to include a | 103 | you had added your own regexps to this, you'll probably need to include a |
| 100 | leading `^', otherwise they'll match anywhere on a line. There is now also a | 104 | leading `^', 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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-04-01 Nick Roberts <nick@nick.uklinux.net> | 11 | 2004-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) |