diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/edebug.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 24252af8386..b6f925e27cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-03-28 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/edebug.el (edebug-display): Don't go to | ||
| 4 | edebug-outside-buffer if it is dead. | ||
| 5 | |||
| 1 | 2007-03-28 Juanma Barranquero <lekktu@gmail.com> | 6 | 2007-03-28 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * view.el (view-mode): Fix typos in docstring. | 8 | * view.el (view-mode): Fix typos in docstring. |
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 2777ea775e9..151bbd2bd9e 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el | |||
| @@ -2755,7 +2755,8 @@ MSG is printed after `::::} '." | |||
| 2755 | ) ; if edebug-save-windows | 2755 | ) ; if edebug-save-windows |
| 2756 | 2756 | ||
| 2757 | ;; Restore current buffer always, in case application needs it. | 2757 | ;; Restore current buffer always, in case application needs it. |
| 2758 | (set-buffer edebug-outside-buffer) | 2758 | (if (buffer-name edebug-outside-buffer) |
| 2759 | (set-buffer edebug-outside-buffer)) | ||
| 2759 | ;; Restore point, and mark. | 2760 | ;; Restore point, and mark. |
| 2760 | ;; Needed even if restoring windows because | 2761 | ;; Needed even if restoring windows because |
| 2761 | ;; that doesn't restore point and mark in the current buffer. | 2762 | ;; that doesn't restore point and mark in the current buffer. |