# HG changeset patch # User Richard M. Stallman # Date 728201764 0 # Node ID e2f96965cb14a6582dfb318bfd49a9d598a40ceb # Parent c97e3a38444cac5c4fe329cb198e620bfdaa8c87 Don't use the completion-oriented history commands. diff -r c97e3a38444c -r e2f96965cb14 lisp/simple.el --- 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)))