Mercurial > emacs
diff lisp/gud.el @ 3646:4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
(gud-display-frame): Save the frame we displayed in
gud-last-last-frame.
(gud-refresh): Force gud-display-frame to jump to the last frame
displayed, even if it has already done so once.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Fri, 11 Jun 1993 11:28:28 +0000 |
parents | 507f64624555 |
children | c5ebd279e007 |
line wrap: on
line diff
--- a/lisp/gud.el Fri Jun 11 11:18:37 1993 +0000 +++ b/lisp/gud.el Fri Jun 11 11:28:28 1993 +0000 @@ -114,6 +114,11 @@ ;; indications of the current program counter. (defvar gud-last-frame nil) +;; Used by gud-refresh, which should cause gud-display-frame to redisplay +;; the last frame, even if it's been called before and gud-last-frame has +;; been set to nil. +(defvar gud-last-last-frame) + ;; All debugger-specific information is collected here. ;; Here's how it works, in case you ever need to add a debugger to the mode. ;; @@ -540,7 +545,8 @@ (progn (gud-set-buffer) (gud-display-line (car gud-last-frame) (cdr gud-last-frame)) - (setq gud-last-frame nil)))) + (setq gud-last-last-frame gud-last-frame + gud-last-frame nil)))) ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen ;; and that its line LINE is visible. @@ -665,6 +671,7 @@ "Fix up a possibly garbled display, and redraw the arrow." (interactive "P") (recenter arg) + (or gud-last-frame (setq gud-last-frame gud-last-last-frame)) (gud-display-frame)) ;;; Code for parsing expressions out of C code. The single entry point is