summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-23 06:52:33 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-23 06:52:33 +0000
commit4bec19b298aebe067e56add1f0ac33284e08e7e8 (patch)
tree8353276b49d280422321a244820845c58451750a
parent0799a502cd09404d19383419ae1a235632237aa4 (diff)
downloademacs-4bec19b298aebe067e56add1f0ac33284e08e7e8.tar.gz
(comint-mode-map): comint-dynamic-list-input-ring now on C-c C-l.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index a5b0cfe5b33..c6edeecbed5 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -406,7 +406,7 @@ Entry to this mode runs the hooks on `comint-mode-hook'."
(define-key comint-mode-map "\C-c\C-o" 'comint-kill-output)
(define-key comint-mode-map "\C-c\C-r" 'comint-show-output)
(define-key comint-mode-map "\C-c\C-e" 'comint-show-maximum-output)
- (define-key comint-mode-map "\C-c\C-h" 'comint-dynamic-list-input-ring)
+ (define-key comint-mode-map "\C-c\C-l" 'comint-dynamic-list-input-ring)
(define-key comint-mode-map "\C-c\C-n" 'comint-next-prompt)
(define-key comint-mode-map "\C-c\C-p" 'comint-previous-prompt)
(define-key comint-mode-map "\C-c\C-d" 'comint-send-eof)