From 4ddefb70d5e610099c8583cfab74593df9b10de9 Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Wed, 5 Jun 2013 17:23:45 +0100 Subject: [PATCH] [PATCH 1/2] initialnullsplit --- f6/14d610201d2106345e38d6c3d2f55a046f9867 | 168 ++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 f6/14d610201d2106345e38d6c3d2f55a046f9867 diff --git a/f6/14d610201d2106345e38d6c3d2f55a046f9867 b/f6/14d610201d2106345e38d6c3d2f55a046f9867 new file mode 100644 index 000000000..bb9ab66e4 --- /dev/null +++ b/f6/14d610201d2106345e38d6c3d2f55a046f9867 @@ -0,0 +1,168 @@ +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 267DE431FC2 + for ; Wed, 5 Jun 2013 09:24:03 -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 ebDx8QduPdNR for ; + Wed, 5 Jun 2013 09:23:54 -0700 (PDT) +Received: from mail-we0-f178.google.com (mail-we0-f178.google.com + [74.125.82.178]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id ADFC2431FAF + for ; Wed, 5 Jun 2013 09:23:54 -0700 (PDT) +Received: by mail-we0-f178.google.com with SMTP id u53so1461479wes.23 + for ; Wed, 05 Jun 2013 09:23:53 -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=mFKbN5NP+d5gd3J/PW0zlK/Ju5RuSNxZZyqEt+aumZI=; + b=O03jX33K1Lj4YRPx75H75uO+Vgzuu0Ca0clT5GODbRA14hPVTcnAkojQytnU6fduEa + ctQUocrbjENI9442/uAneCA649Xv0PmVaLpITQG+W5FuNXfYYbS3emPEUBBH5JzvjNZx + rRWNN3xqqaXmBmUghQ54U3vehi//0b6TPE8V/5bbZkOvZeWF1PW5QE3FE4irlgAtvYfR + PDJXx6VXr+1M8i1UMiKVd/OTyI9Omj7AG3CAw8h4cAYTiMsLYN8Mom9t77EKQF4oKzYK + IZE6GqmBkOxVG+0W2jm+Weay/b/y1C02OfYi4cizIpZh4rYQ9YEG/FezwH501DS3XYeX + kSdQ== +X-Received: by 10.181.13.13 with SMTP id eu13mr7388343wid.26.1370449433639; + Wed, 05 Jun 2013 09:23:53 -0700 (PDT) +Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) + by mx.google.com with ESMTPSA id cw8sm11429482wib.7.2013.06.05.09.23.52 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Wed, 05 Jun 2013 09:23:52 -0700 (PDT) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: =?UTF-8?q?=5BPATCH=201/2=5D=20initialnullsplit?= +Date: Wed, 5 Jun 2013 17:23:45 +0100 +Message-Id: <1370449426-2325-2-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: <1370449426-2325-1-git-send-email-markwalters1009@gmail.com> +References: <1370449426-2325-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, 05 Jun 2013 16:24:03 -0000 + +--- + emacs/Makefile.local | 1 + + emacs/notmuch-show-display.el | 25 +++++++++++++++++++++++++ + emacs/notmuch-show-lib.el | 27 +++++++++++++++++++++++++++ + emacs/notmuch-show.el | 1 + + 4 files changed, 54 insertions(+), 0 deletions(-) + create mode 100644 emacs/notmuch-show-display.el + create mode 100644 emacs/notmuch-show-lib.el + +diff --git a/emacs/Makefile.local b/emacs/Makefile.local +index 456700a..a5e7a31 100644 +--- a/emacs/Makefile.local ++++ b/emacs/Makefile.local +@@ -6,6 +6,7 @@ emacs_sources := \ + $(dir)/notmuch.el \ + $(dir)/notmuch-query.el \ + $(dir)/notmuch-show.el \ ++ $(dir)/notmuch-show-display.el \ + $(dir)/notmuch-wash.el \ + $(dir)/notmuch-hello.el \ + $(dir)/notmuch-mua.el \ +diff --git a/emacs/notmuch-show-display.el b/emacs/notmuch-show-display.el +new file mode 100644 +index 0000000..50d83ad +--- /dev/null ++++ b/emacs/notmuch-show-display.el +@@ -0,0 +1,25 @@ ++;; notmuch-show-display.el --- displaying notmuch forests. ++;; ++;; Copyright © Carl Worth ++;; Copyright © David Edmondson ++;; ++;; 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: Carl Worth ++;; David Edmondson ++ ++ ++(provide 'notmuch-show-display) +\ No newline at end of file +diff --git a/emacs/notmuch-show-lib.el b/emacs/notmuch-show-lib.el +new file mode 100644 +index 0000000..b9a197a +--- /dev/null ++++ b/emacs/notmuch-show-lib.el +@@ -0,0 +1,27 @@ ++;; notmuch-show-lib.el --- displaying notmuch forests. ++;; ++;; Copyright © Carl Worth ++;; Copyright © David Edmondson ++;; ++;; 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: Carl Worth ++;; David Edmondson ++ ++ ++;; ++ ++(provide 'notmuch-show-lib) +diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el +index b0a8d8a..37ba911 100644 +--- a/emacs/notmuch-show.el ++++ b/emacs/notmuch-show.el +@@ -36,6 +36,7 @@ + (require 'notmuch-mua) + (require 'notmuch-crypto) + (require 'notmuch-print) ++(require 'notmuch-show-display) + + (declare-function notmuch-call-notmuch-process "notmuch" (&rest args)) + (declare-function notmuch-search-next-thread "notmuch" nil) +-- +1.7.9.1 + -- 2.26.2