From: Jesse Rosenthal Date: Wed, 12 May 2010 16:10:58 +0000 (-0400) Subject: Added a "Downloading..." message to the fetching. X-Git-Url: https://git.cworth.org/git?p=notmuch-wiki;a=commitdiff_plain;h=4f584611905cb946e6cf17935b048513c689450d Added a "Downloading..." message to the fetching. Added a downloading message for fetching, so users will know that *something* is happening. --- diff --git a/remoteusage.mdwn b/remoteusage.mdwn index 09447a1..8ea3a51 100644 --- a/remoteusage.mdwn +++ b/remoteusage.mdwn @@ -120,9 +120,11 @@ message text. (defun notmuch-show-get-filename () (let* ((orig-filename (notmuch-show-get-prop :filename)) - (retvalue (shell-command-to-string (concat notmuch-command - " --get " - orig-filename)))) + (retvalue (progn + (message "Downloading... ") + (shell-command-to-string (concat notmuch-command + " --get " + orig-filename))))) (replace-regexp-in-string "\n" "" retvalue))) This will will use the "--get" option of the above