emacs-emojify

fork of https://github.com/iqbalansari/emacs-emojify
Log | Files | Refs | LICENSE

commit 194741e5fdcad05e197bbb392a22937b5fc4b403
parent 4a027daf474646fed3db3db92901dbc19a78423c
Author: jrs5 <jonathan.schmeling@generalgrowth.com>
Date:   Mon, 11 May 2020 23:02:21 -0500

Revert this back to `completing-read`.

Diffstat:
Memojify.el | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emojify.el b/emojify.el @@ -1468,8 +1468,8 @@ non-interactive mode and `emojify-download-emojis-p' is set to `ask'." (defun emojify-download-emoji (emoji-set) "Download the provided EMOJI-SET." - (interactive (list (emojify-completing-read-function "Select the emoji set you want to download: " - (ht-keys emojify-emoji-set-json)))) + (interactive (list (completing-read "Select the emoji set you want to download: " + (ht-keys emojify-emoji-set-json)))) (let ((emoji-data (ht-get emojify-emoji-set-json emoji-set))) (cond ((not emoji-data) (error "No emoji set named %s found" emoji-set))