diff options
| author | Richard M. Stallman | 2007-10-10 20:19:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-10 20:19:44 +0000 |
| commit | 49c23b705bf6f6819b290df0a88afe5091205e66 (patch) | |
| tree | 6c4c29b5b41a9a97bb12527afde5247d33d34ed0 /lisp | |
| parent | 7c626e9d7b5dd4a108571d9b29624d922bb355d7 (diff) | |
| download | emacs-49c23b705bf6f6819b290df0a88afe5091205e66.tar.gz emacs-49c23b705bf6f6819b290df0a88afe5091205e66.zip | |
(debugger-setup-buffer): Disable undo in *Backtrace*.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/emacs-lisp/debug.el | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dcf00e9f448..6d9360a1b43 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-10-10 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo | ||
| 4 | in *Backtrace*. | ||
| 5 | |||
| 6 | * faces.el (face-font-selection-order): Doc fix. | ||
| 7 | |||
| 8 | * loadhist.el (unload-feature): Doc fix. | ||
| 9 | |||
| 1 | 2007-10-10 Juanma Barranquero <lekktu@gmail.com> | 10 | 2007-10-10 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 11 | ||
| 3 | * follow.el: Change all instances of "Follow Mode" to "Follow | 12 | * follow.el: Change all instances of "Follow Mode" to "Follow |
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 2dea1d0a347..39cb8dce1ff 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el | |||
| @@ -269,6 +269,7 @@ That buffer should be current already." | |||
| 269 | (setq buffer-read-only nil) | 269 | (setq buffer-read-only nil) |
| 270 | (erase-buffer) | 270 | (erase-buffer) |
| 271 | (set-buffer-multibyte nil) | 271 | (set-buffer-multibyte nil) |
| 272 | (setq buffer-undo-list t) | ||
| 272 | (let ((standard-output (current-buffer)) | 273 | (let ((standard-output (current-buffer)) |
| 273 | (print-escape-newlines t) | 274 | (print-escape-newlines t) |
| 274 | (print-level 8) | 275 | (print-level 8) |