diff options
| -rw-r--r-- | lisp/emacs-lisp/crm.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/crm.el b/lisp/emacs-lisp/crm.el index 253dfc6237a..422a8d52dcf 100644 --- a/lisp/emacs-lisp/crm.el +++ b/lisp/emacs-lisp/crm.el | |||
| @@ -238,6 +238,11 @@ with empty strings removed." | |||
| 238 | (let* ((map (if require-match | 238 | (let* ((map (if require-match |
| 239 | crm-local-must-match-map | 239 | crm-local-must-match-map |
| 240 | crm-local-completion-map)) | 240 | crm-local-completion-map)) |
| 241 | (map (if minibuffer-visible-completions | ||
| 242 | (make-composed-keymap | ||
| 243 | (list minibuffer-visible-completions-map | ||
| 244 | map)) | ||
| 245 | map)) | ||
| 241 | input) | 246 | input) |
| 242 | (minibuffer-with-setup-hook | 247 | (minibuffer-with-setup-hook |
| 243 | (lambda () | 248 | (lambda () |