]> git.eshelyaron.com Git - emacs.git/commitdiff
(debugger-setup-buffer): Disable undo in *Backtrace*.
authorRichard M. Stallman <rms@gnu.org>
Wed, 10 Oct 2007 20:19:44 +0000 (20:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 10 Oct 2007 20:19:44 +0000 (20:19 +0000)
lisp/ChangeLog
lisp/emacs-lisp/debug.el

index dcf00e9f448cb1ea8e207388d0b00644dbf8c7ba..6d9360a1b436ab3d9a3dbdb4bcc8e5936520a53c 100644 (file)
@@ -1,3 +1,12 @@
+2007-10-10  Richard Stallman  <rms@gnu.org>
+
+       * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
+       in *Backtrace*.
+
+       * faces.el (face-font-selection-order): Doc fix.
+
+       * loadhist.el (unload-feature): Doc fix.
+
 2007-10-10  Juanma Barranquero  <lekktu@gmail.com>
 
        * follow.el: Change all instances of "Follow Mode" to "Follow
index 2dea1d0a3470b863199f697d8e4f5680104dd230..39cb8dce1ffe51ef966807c383426f19f9306989 100644 (file)
@@ -269,6 +269,7 @@ That buffer should be current already."
   (setq buffer-read-only nil)
   (erase-buffer)
   (set-buffer-multibyte nil)
+  (setq buffer-undo-list t)
   (let ((standard-output (current-buffer))
        (print-escape-newlines t)
        (print-level 8)