diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-02-05 02:06:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-02-05 02:06:38 +0000 |
commit | 34238338f9032b0d7130f341cb59b47e9b426565 (patch) | |
tree | a2e4ec8509af6efdbd18c9443b2afa426affe2eb /lisp | |
parent | 13f4b6b3371e064f5331f1853e99be05dfc1d570 (diff) | |
download | emacs-34238338f9032b0d7130f341cb59b47e9b426565.tar.gz emacs-34238338f9032b0d7130f341cb59b47e9b426565.tar.bz2 emacs-34238338f9032b0d7130f341cb59b47e9b426565.zip |
Once again, go back to ordinary next-history-element
for M-n in minibuf, even for completion.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 695f1196730..a3409d0f0df 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -450,8 +450,8 @@ contains expressions rather than strings.") (minibuffer-local-completion-map . t) (minibuffer-local-must-match-map . t) (read-expression-map . nil)))) - '(("\en" . (next-history-element . next-complete-history-element)) - ([next] . (next-history-element . next-complete-history-element)) + '(("\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) |