diff lisp/simple.el @ 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 04fb1d3d6992
children 6ca05c5f8979
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)))