diff options
author | Ryan <rct@thompsonclan.org> | 2017-06-02 20:00:49 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-06-02 20:00:49 -0400 |
commit | b406174d814e1c1bd34917b1497801137e9211a1 (patch) | |
tree | 6e23f0b3c70ef473709a6cfba872f7673f5a915a /lisp/tmm.el | |
parent | 412e7086f68c0d9d6f436c8c376f7e33667c2f20 (diff) | |
download | emacs-b406174d814e1c1bd34917b1497801137e9211a1.tar.gz |
Use completing-read-default in tmm-prompt
tmm uses completing-read, but customizes its behavior so much
that any alternative completing-read-function will almost
certainly break it. For example, both ido-ubiquitous and ivy have
special code to deactivate themselves for tmm.
* lisp/tmm.el (tmm-prompt): Use completing-read-default instead of
completing-read. (Bug#27193)
Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/tmm.el')
-rw-r--r-- | lisp/tmm.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el index c6830903e3d..8755971d7ca 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -247,7 +247,7 @@ Its value should be an event that has a binding in MENU." ;; candidates in the order they are shown on ;; the menu bar. So pass completing-read the ;; reversed copy of the list. - (completing-read + (completing-read-default (concat gl-str " (up/down to change, PgUp to menu): ") (tmm--completion-table (reverse tmm-km-list)) nil t nil |