diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-01-28 06:16:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-01-28 06:16:04 +0000 |
commit | 658eed663c8dbd0edaf8da9c6fcf9cb2c9765681 (patch) | |
tree | 1b01e55d2a8dab4e8865e97d97e966387ae52b53 /lisp/simple.el | |
parent | 753be5cc50ab471128f8fffe834267b56135aadf (diff) | |
download | emacs-658eed663c8dbd0edaf8da9c6fcf9cb2c9765681.tar.gz |
Don't use the completion-oriented history commands.
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))) |