diff options
| author | Roland McGrath | 1993-02-05 17:41:42 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-02-05 17:41:42 +0000 |
| commit | d81362b0c381dbea6d49c75e9e085e1a8502f206 (patch) | |
| tree | 15e1607a6ca3eb1f009b076af70232a22d9ad818 | |
| parent | 34238338f9032b0d7130f341cb59b47e9b426565 (diff) | |
| download | emacs-d81362b0c381dbea6d49c75e9e085e1a8502f206.tar.gz emacs-d81362b0c381dbea6d49c75e9e085e1a8502f206.zip | |
Restore nuked information in minibuffer history bindings.
Use intelligent method of disabling completion-oriented bindings.
| -rw-r--r-- | lisp/simple.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index a3409d0f0df..efe38907cb0 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -442,7 +442,7 @@ contains expressions rather than strings.") | |||
| 442 | ;; history commands which rms turned off since they seem to | 442 | ;; history commands which rms turned off since they seem to |
| 443 | ;; do things he doesn't like. | 443 | ;; do things he doesn't like. |
| 444 | (if (and (cdr keymap-and-completionp) nil) ;XXX turned off | 444 | (if (and (cdr keymap-and-completionp) nil) ;XXX turned off |
| 445 | (cdr command) | 445 | (progn (error "EMACS BUG!") (cdr command)) |
| 446 | (car command)) | 446 | (car command)) |
| 447 | command)))) | 447 | command)))) |
| 448 | '((minibuffer-local-map . nil) | 448 | '((minibuffer-local-map . nil) |
| @@ -450,10 +450,10 @@ 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-history-element)) | 453 | '(("\en" . (next-history-element . next-complete-history-element)) |
| 454 | ([next] . (next-history-element . next-history-element)) | 454 | ([next] . (next-history-element . next-complete-history-element)) |
| 455 | ("\ep" . (previous-history-element . previous-history-element)) | 455 | ("\ep" . (previous-history-element . previous-complete-history-element)) |
| 456 | ([prior] . (previous-history-element . previous-history-element)) | 456 | ([prior] . (previous-history-element . previous-complete-history-element)) |
| 457 | ("\er" . previous-matching-history-element) | 457 | ("\er" . previous-matching-history-element) |
| 458 | ("\es" . next-matching-history-element))) | 458 | ("\es" . next-matching-history-element))) |
| 459 | 459 | ||