diff options
| -rw-r--r-- | lisp/gud.el | 5 |
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 | ;; |