diff options
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index ee49c57900d..baff3286af6 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -447,11 +447,13 @@ contains expressions rather than strings.") (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))) |