From 7341b78abaa2db79271ea0e8a82120661448e251 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Sat, 29 Mar 2014 10:07:58 +0200 Subject: emacs: instruct user to autoload notmuch instead of require'ing it When (require 'notmuch) is added to ~/.emacs notmuch is loaded to every instance of emacs although it may not be used in majority of those instances. When (autoload 'notmuch "notmuch" ...) is added to ~/.emacs notmuch is loaded (only) when user invokes the notmuch function. User may want to add other entrypoints to notmuch by adding more autoloads -- the autoload instruction given should offer them clue how to do so. --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 3a003ad9..d92fcfdf 100644 --- a/README +++ b/README @@ -42,7 +42,7 @@ the libnotmuch library. Notmuch installs a full-featured email interface for use within emacs. To use this, first add the following line to your .emacs file: - (require 'notmuch) + (autoload 'notmuch "notmuch" "Notmuch mail" t) Then, either run "emacs -f notmuch" or execute the command "M-x notmuch" from within a running emacs. -- cgit v1.2.3