aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-09-30 08:36:57 +0000
committerJim Blandy1992-09-30 08:36:57 +0000
commitd840a865eaa67c72dac4fe1368079298cb358679 (patch)
tree9a2c60161cb69d8590a657bfc6e50d86fe7ad531
parent7739e1b816e4a546584f87b5292c73ea44b27402 (diff)
downloademacs-d840a865eaa67c72dac4fe1368079298cb358679.tar.gz
emacs-d840a865eaa67c72dac4fe1368079298cb358679.zip
* gud.el (gud-last-frame): Added defvar for this.
-rw-r--r--lisp/gud.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 65008f28e1f..d5eaf466601 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -90,6 +90,11 @@ This association list has elements of the form
90 (if key 90 (if key
91 (list 'define-key 'gud-mode-map key (list 'quote func)))))) 91 (list 'define-key 'gud-mode-map key (list 'quote func))))))
92 92
93;; Where gud-display-frame should put the debugging arrow. This is
94;; set by the marker-filter, which scans the debugger's output for
95;; indications of the current pc.
96(defvar gud-last-frame nil)
97
93;; All debugger-specific information is collected here 98;; All debugger-specific information is collected here
94;; Here's how it works, in case you ever need to add a debugger to the table. 99;; Here's how it works, in case you ever need to add a debugger to the table.
95;; 100;;