aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-hello.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-26 22:42:07 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-26 22:42:07 -0700
commita4669217600e4536dc0c49f0255af5e2d9bc183f (patch)
tree652b62e711e2cbe2e5cc458874bfccfb1a8af0d3 /emacs/notmuch-hello.el
parentfa5279113b8bc2d6f58d672867f980ef8f02a118 (diff)
emacs: Rip out all of the notmuch-folder code.
We are asserting that the new notmuch-hello implementation, (available by just calling `notmuch') is just as easy to use as the old notmuch-folder. So let's remove what's now a largely redundant implementation. To make this transition easier, we are still supporting the notmuch-folders variable name, and we still provide `notmuch-folder' as an alias which can be invoked to get the new notmuch-hello functionality.
Diffstat (limited to 'emacs/notmuch-hello.el')
-rw-r--r--emacs/notmuch-hello.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index db2da9f4..cbe414f1 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -399,6 +399,12 @@ diagonal."
(if (not (widget-at))
(widget-forward 1)))))
+;;;###autoload
+(defun notmuch-folder ()
+ "Deprecated function for invoking notmuch---calling `notmuch' is preferred now."
+ (interactive)
+ (notmuch-hello))
+
;;
(provide 'notmuch-hello)