diff options
| author | Richard M. Stallman | 2007-03-28 13:24:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-03-28 13:24:21 +0000 |
| commit | 57577884641d7c8ea5af714cd086029eeee9c45f (patch) | |
| tree | 430048ca9b909453a65580c39f5226fba4e47cc2 | |
| parent | 38acf670fb405e26d1f749aa2d465db688e321e3 (diff) | |
| download | emacs-57577884641d7c8ea5af714cd086029eeee9c45f.tar.gz emacs-57577884641d7c8ea5af714cd086029eeee9c45f.zip | |
(edebug-display): Don't go to edebug-outside-buffer if it is dead.
| -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. |