debian: Add emacs autoloads for all top-level notmuch functions.

With this, users will be able to simply "apt-get install emacs" and
then "emacs -f notmuch" without having to edit ~/.emacs to add a
("require 'notmuch)".
This commit is contained in:
Carl Worth 2010-10-29 15:28:18 -07:00
parent b11ecf613a
commit bec47efeeb

View file

@ -20,4 +20,9 @@
(concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/notmuch"))
(autoload 'notmuch "notmuch" "Run notmuch and display saved searches, known tags, etc." t)
(autoload 'notmuch-hello "notmuch" "Run notmuch and display saved searches, known tags, etc." t)
(autoload 'notmuch-search "notmuch" "Run \"notmuch search\" with the given query string and display results." t)
(autoload 'notmuch-show "notmuch" "Run \"notmuch show\" with the given thread ID and display results." t)
))