summaryrefslogtreecommitdiff
path: root/lisp/shell.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-12-23 03:41:22 +0000
committerRichard M. Stallman <rms@gnu.org>1993-12-23 03:41:22 +0000
commitf06b3105ee0e64cb438e66402a8612b26228eae9 (patch)
tree7be9c7b972c501a96335847b35fe6bd57dbb7798 /lisp/shell.el
parent35d359c5dad02dd6aa5d3ff019bdf342e80afb73 (diff)
downloademacs-f06b3105ee0e64cb438e66402a8612b26228eae9.tar.gz
(shell-mode): Pass t to comint-read-input-ring.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index b4a65ed4f2e..2110dea3582 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -68,7 +68,7 @@
;;; m-R comint-previous-matching-input-from-input -"- matching input
;;; m-s comint-next-matching-input Next input that matches
;;; m-S comint-next-matching-input-from-input -"- matching input
-;;; m-c-r comint-previous-input-matching Search backwards in input history
+;;; m-c-l comint-show-output Show last batch of process output
;;; return comint-send-input
;;; c-a comint-bol Beginning of line; skip prompt
;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
@@ -301,7 +301,7 @@ cause the window to scroll to the end of the buffer."
((string-match "ksh$" shell) "~/.sh_history")
(t "~/.history")))))
(run-hooks 'shell-mode-hook)
- (comint-read-input-ring)
+ (comint-read-input-ring t)
(shell-dirstack-message))
;;;###autoload