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 2EEDB429E53 for ; Wed, 11 Jul 2012 11:57:23 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 FXfUdPjwkNaB for ; Wed, 11 Jul 2012 11:57:21 -0700 (PDT) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 182A7429E30 for ; Wed, 11 Jul 2012 11:57:20 -0700 (PDT) Received: by wgbdt14 with SMTP id dt14so1062393wgb.2 for ; Wed, 11 Jul 2012 11:57:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=mjAet52jlsdfg3dmxXYfmQC+ybc6TwGgCmBlSIS24sY=; b=0Geb94hONNyCeYNpdU55axEbTojrli58CbC1uBdV8unUTlKXwDJ+SCdeKlimQXNnce uNzXdTMSNjvuSQ/+GXBkXAZTbPubDh6al2rsUtXcPJxSpPD4zEI9g3ImaKriJxkIfr1w IGLpi74OathD4MoY1sMFIzMNliATb+rtm3VgMgPLWSayeoEBXBzoZ+5O4tl5XunQPYjw Hh5PF98qKBzXxPC1zaFppNyZgWj+6p751QJFku3pjdBfeUe7DVtkCboiMijFMdVoRT9z eDZt1k3/kF8lNg3+Mcdfo1L1rUw4z1v1HzEyZpBD1m8bGEFvLnuJUIVAJ3odMnuQri6g 0F5w== Received: by 10.216.92.193 with SMTP id j43mr22372319wef.114.1342033039691; Wed, 11 Jul 2012 11:57:19 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id bu6sm6962984wib.8.2012.07.11.11.57.18 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 11 Jul 2012 11:57:18 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH 1/3] emacs: add a stub notmuch-pick.el file Date: Wed, 11 Jul 2012 19:57:05 +0100 Message-Id: <1342033027-30286-2-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1342033027-30286-1-git-send-email-markwalters1009@gmail.com> References: <1342033027-30286-1-git-send-email-markwalters1009@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Wed, 11 Jul 2012 18:57:23 -0000 All the actual setup done by the real notmuch-pick is in the function notmuch-pick-init so that is the only function we need to provide. --- emacs/Makefile.local | 3 ++- emacs/notmuch-pick.el | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletions(-) create mode 100644 emacs/notmuch-pick.el diff --git a/emacs/Makefile.local b/emacs/Makefile.local index fb82247..5822358 100644 --- a/emacs/Makefile.local +++ b/emacs/Makefile.local @@ -15,7 +15,8 @@ emacs_sources := \ $(dir)/notmuch-crypto.el \ $(dir)/notmuch-tag.el \ $(dir)/coolj.el \ - $(dir)/notmuch-print.el + $(dir)/notmuch-print.el \ + $(dir)/notmuch-pick.el emacs_images := \ $(srcdir)/$(dir)/notmuch-logo.png diff --git a/emacs/notmuch-pick.el b/emacs/notmuch-pick.el new file mode 100644 index 0000000..79fc19a --- /dev/null +++ b/emacs/notmuch-pick.el @@ -0,0 +1,28 @@ +;; notmuch-pick.el --- displaying notmuch forests. +;; +;; Copyright © Carl Worth +;; Copyright © David Edmondson +;; Copyright © Mark Walters +;; +;; This file is part of Notmuch. +;; +;; Notmuch is free software: you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. +;; +;; Notmuch is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with Notmuch. If not, see . +;; +;; Authors: David Edmondson +;; Mark Walters + +(defun notmuch-pick-init () + "empty function ready to be replaced") + +(provide 'notmuch-pick) -- 1.7.9.1