From: Michal Sojka Date: Fri, 19 Sep 2014 18:16:40 +0000 (+0200) Subject: Emacs: Display a message when generating address completion candidates X-Git-Tag: 0.20~90 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=2a0a13a433e24076453da38f18d7d6053af34287 Emacs: Display a message when generating address completion candidates The TAB-initiated address completion generates completion candidates synchronously, blocking the UI. Since this can take long time, it is better to let the use know what's happening. --- diff --git a/emacs/notmuch-address.el b/emacs/notmuch-address.el index fa65cd52..fde3c1b2 100644 --- a/emacs/notmuch-address.el +++ b/emacs/notmuch-address.el @@ -70,7 +70,8 @@ to know how address selection is made by default." (point))) (orig (buffer-substring-no-properties beg end)) (completion-ignore-case t) - (options (notmuch-address-options orig)) + (options (with-temp-message "Looking for completion candidates..." + (notmuch-address-options orig))) (num-options (length options)) (chosen (cond ((eq num-options 0)