diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-18 20:10:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-18 20:10:05 +0000 |
commit | 6e93f477bb59d799b5b2b61b3feb7ba89b917e0b (patch) | |
tree | 69132a5ebc03b997baeedc470c18bb2ad2b2c172 | |
parent | f71b06f8a0ab1ea3c62ece39678111f4876c7c30 (diff) | |
download | emacs-6e93f477bb59d799b5b2b61b3feb7ba89b917e0b.tar.gz |
(gud-mode): Define C-c C-l in gud buffer.
-rw-r--r-- | lisp/gud.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index fac1ae15705..208c80b87fd 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -772,6 +772,7 @@ comint mode, which see." (setq mode-name "Debugger") (setq mode-line-process '(": %s")) (use-local-map (copy-keymap comint-mode-map)) + (define-key (current-local-map) "\C-c\C-l" 'gud-refresh) (make-local-variable 'gud-last-frame) (setq gud-last-frame nil) (make-local-variable 'comint-prompt-regexp) |