Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 8FE69431E64 for ; Sun, 31 Mar 2013 10:52:08 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DqjHXT+GsUsj for ; Sun, 31 Mar 2013 10:52:07 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id AC23E431FAE for ; Sun, 31 Mar 2013 10:52:07 -0700 (PDT) Received: by guru.guru-group.fi (Postfix, from userid 501) id BA6761000CF; Sun, 31 Mar 2013 20:52:06 +0300 (EEST) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: [PATCH 1/1] emacs/notmuch.el: remove instruction to (require 'notmuch) in ~/.emacs Date: Sun, 31 Mar 2013 20:52:04 +0300 Message-Id: <1364752324-25966-1-git-send-email-tomi.ollila@iki.fi> X-Mailer: git-send-email 1.8.0 Cc: tomi.ollila@iki.fi X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Mar 2013 17:52:08 -0000 The (require 'notmuch) is unnecessary to be added to ~/.emacs for M-x notmuch or emacs -f notmuch to start it. If (require 'notmuch) is added to ~/.emacs it is loaded to every instance of emacs although it may not be used in majority of those instances (but if needed M-x notmuch will load it). Preloading notmuch would speed up M-x notmuch a bit -- for emacs -f notmuch it doesn't bring any startup speed increase (if that would have mattered). --- emacs/notmuch.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index e58c51d..ae9becd 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -34,12 +34,7 @@ ;; ;; to install it. ;; -;; Then, to actually run it, add: -;; -;; (require 'notmuch) -;; -;; to your ~/.emacs file, and then run "M-x notmuch" from within emacs, -;; or run: +;; Then, to actually run it, run "M-x notmuch" from within emacs, or run: ;; ;; emacs -f notmuch ;; -- 1.8.1.2