[PATCH] convert bitmap to unsigned char
[notmuch-archives.git] / c0 / af708d895df1cd4dc1c199a8dbd8a91e50d738
1 Return-Path: <schnouki@schnouki.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id A3CE1429E2E\r
6         for <notmuch@notmuchmail.org>; Mon,  3 Oct 2011 05:04:12 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.1\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1]\r
13         autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id wEc---4ippSC for <notmuch@notmuchmail.org>;\r
17         Mon,  3 Oct 2011 05:04:08 -0700 (PDT)\r
18 Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222])\r
19         by olra.theworths.org (Postfix) with ESMTP id 87CFC429E25\r
20         for <notmuch@notmuchmail.org>; Mon,  3 Oct 2011 05:04:08 -0700 (PDT)\r
21 Received: from localhost.localdomain (thor.loria.fr [152.81.12.250])\r
22         by ks3536.kimsufi.com (Postfix) with ESMTPSA id 5B6A16A06B2;\r
23         Mon,  3 Oct 2011 14:04:07 +0200 (CEST)\r
24 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net;\r
25         s=key-schnouki; t=1317643447;\r
26         bh=Y/7hdGQkX+pBgQp+3my8fZX+SIc9xhupzz+ZhqCUYm0=;\r
27         h=From:To:Subject:Date:Message-Id:In-Reply-To:References;\r
28         b=KDnRImD0sb/itW6EADtFlYocLm9uPaVTh0aLpkQMiJsU7Ktgj9G/hmFfh+I+m+Gq0\r
29         B67+BzqRnSXfddJR3EGwv3+JrQUDP8/kUjMr0ugZ1NqJ4p2MyW06s5k9Bcrg/OhPMR\r
30         koZUP+ewQ1aWoDFWGlkkF+ZAABmLfHJF8YTmp9JE=\r
31 From: Thomas Jost <schnouki@schnouki.net>\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [PATCH 4/4] emacs: add notmuch-hello-hook\r
34 Date: Mon,  3 Oct 2011 14:03:58 +0200\r
35 Message-Id: <1317643438-31272-5-git-send-email-schnouki@schnouki.net>\r
36 X-Mailer: git-send-email 1.7.6.4\r
37 In-Reply-To: <1317643438-31272-1-git-send-email-schnouki@schnouki.net>\r
38 References: <1317643438-31272-1-git-send-email-schnouki@schnouki.net>\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.13\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Mon, 03 Oct 2011 12:04:12 -0000\r
52 \r
53 ---\r
54  emacs/notmuch-hello.el |    9 ++++++++-\r
55  1 files changed, 8 insertions(+), 1 deletions(-)\r
56 \r
57 diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el\r
58 index 1cf95d7..00bb5ce 100644\r
59 --- a/emacs/notmuch-hello.el\r
60 +++ b/emacs/notmuch-hello.el\r
61 @@ -111,6 +111,11 @@ So:\r
62           (integer :tag "Number of characters")\r
63           (float :tag "Fraction of window")))\r
64  \r
65 +(defcustom notmuch-hello-hook nil\r
66 +  "Functions called after populating a `notmuch-hello' buffer."\r
67 +  :type 'hook\r
68 +  :group 'notmuch)\r
69 +\r
70  (defcustom notmuch-thousands-separator ","\r
71    "The string used as a thousands separator.\r
72  \r
73 @@ -551,7 +556,9 @@ Complete list of currently available key bindings:\r
74           (widget-forward 1)))\r
75  \r
76        (unless (widget-at)\r
77 -       (notmuch-hello-goto-search)))))\r
78 +       (notmuch-hello-goto-search))\r
79 +\r
80 +      (run-hooks 'notmuch-hello-hook))))\r
81  \r
82  (defun notmuch-folder ()\r
83    "Deprecated function for invoking notmuch---calling `notmuch' is preferred now."\r
84 -- \r
85 1.7.6.4\r
86 \r