Mercurial > emacs
changeset 1824:e2f96965cb14
Don't use the completion-oriented history commands.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 28 Jan 1993 06:16:04 +0000 |
parents | c97e3a38444c |
children | ba2fcbf5d6a1 |
files | lisp/simple.el |
diffstat | 1 files changed, 7 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Tue Jan 26 04:28:27 1993 +0000 +++ b/lisp/simple.el Thu Jan 28 06:16:04 1993 +0000 @@ -447,11 +447,13 @@ (minibuffer-local-completion-map . t) (minibuffer-local-must-match-map . t) (read-expression-map . nil)))) - ;; In completion maps, use the completion-oriented history commands. - '(("\en" . (next-history-element . next-complete-history-element)) - ([next] . (next-history-element . next-complete-history-element)) - ("\ep" . (previous-history-element . previous-complete-history-element)) - ([prior] . (previous-history-element . previous-complete-history-element)) + ;;; This was once set up to use the completion-oriented history commands + ;;; but I turned that off since they seem to do things I don't like. + ;;; - rms + '(("\en" . (next-history-element . next-history-element)) + ([next] . (next-history-element . next-history-element)) + ("\ep" . (previous-history-element . previous-history-element)) + ([prior] . (previous-history-element . previous-history-element)) ("\er" . previous-matching-history-element) ("\es" . next-matching-history-element)))