From: Richard M. Stallman Date: Thu, 23 Dec 1993 03:41:22 +0000 (+0000) Subject: (shell-mode): Pass t to comint-read-input-ring. X-Git-Tag: emacs-19.34~10566 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f5a131d8fdc907e3b49b37123deba88fcaf2a590;p=emacs.git (shell-mode): Pass t to comint-read-input-ring. --- 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