diff options
| author | Richard M. Stallman | 1993-02-05 02:06:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-02-05 02:06:38 +0000 |
| commit | 34238338f9032b0d7130f341cb59b47e9b426565 (patch) | |
| tree | a2e4ec8509af6efdbd18c9443b2afa426affe2eb | |
| parent | 13f4b6b3371e064f5331f1853e99be05dfc1d570 (diff) | |
| download | emacs-34238338f9032b0d7130f341cb59b47e9b426565.tar.gz emacs-34238338f9032b0d7130f341cb59b47e9b426565.zip | |
Once again, go back to ordinary next-history-element
for M-n in minibuf, even for completion.
| -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.") | |||
| 450 | (minibuffer-local-completion-map . t) | 450 | (minibuffer-local-completion-map . t) |
| 451 | (minibuffer-local-must-match-map . t) | 451 | (minibuffer-local-must-match-map . t) |
| 452 | (read-expression-map . nil)))) | 452 | (read-expression-map . nil)))) |
| 453 | '(("\en" . (next-history-element . next-complete-history-element)) | 453 | '(("\en" . (next-history-element . next-history-element)) |
| 454 | ([next] . (next-history-element . next-complete-history-element)) | 454 | ([next] . (next-history-element . next-history-element)) |
| 455 | ("\ep" . (previous-history-element . previous-history-element)) | 455 | ("\ep" . (previous-history-element . previous-history-element)) |
| 456 | ([prior] . (previous-history-element . previous-history-element)) | 456 | ([prior] . (previous-history-element . previous-history-element)) |
| 457 | ("\er" . previous-matching-history-element) | 457 | ("\er" . previous-matching-history-element) |