Re: Xapian-quoting based batch-tagging.
[notmuch-archives.git] / 34 / d9a1f47bf7a26d8709f82053cb5c386ba47b32
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 734FD431FB6\r
6         for <notmuch@notmuchmail.org>; Mon,  3 Oct 2011 09:48:51 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References"\r
9 X-Spam-Flag: NO\r
10 X-Spam-Score: -0.1\r
11 X-Spam-Level: \r
12 X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5\r
13         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1]\r
14         autolearn=disabled\r
15 Received: from olra.theworths.org ([127.0.0.1])\r
16         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
17         with ESMTP id B4zk6ashDN-W for <notmuch@notmuchmail.org>;\r
18         Mon,  3 Oct 2011 09:48:50 -0700 (PDT)\r
19 Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222])\r
20         by olra.theworths.org (Postfix) with ESMTP id DE95A429E33\r
21         for <notmuch@notmuchmail.org>; Mon,  3 Oct 2011 09:48:45 -0700 (PDT)\r
22 Received: from localhost.localdomain (thor.loria.fr [152.81.12.250])\r
23         by ks3536.kimsufi.com (Postfix) with ESMTPSA id 31A366A069B;\r
24         Mon,  3 Oct 2011 18:48:45 +0200 (CEST)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net;\r
26         s=key-schnouki; t=1317660525;\r
27         bh=sF1JJBa9XQmT3jr1VrFVahLJShfrVUINhDuYo3Yj8Us=;\r
28         h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:\r
29         In-Reply-To:References;\r
30         b=WQn2p2canl5DQk/RPW9YNJgMxgkdHh789YdB7DxtEsXFiTwivVTnSf3mmIjmCDthR\r
31         27bHOySwfNVrYM9a38tQoKcAt4e3XbWIvtqi6m9Qd0N6D8/Hx6dVko9jlBYkhgQdou\r
32         9jOHfqcQCzo0JBK/4qiLV3SwQGPBMiTz/ZGPztSs=\r
33 From: Thomas Jost <schnouki@schnouki.net>\r
34 To: notmuch@notmuchmail.org\r
35 Subject: [PATCH 11/13] emacs: remove no longer used functions from\r
36         notmuch-show.el\r
37 Date: Mon,  3 Oct 2011 18:47:25 +0200\r
38 Message-Id: <1317660447-27520-12-git-send-email-schnouki@schnouki.net>\r
39 X-Mailer: git-send-email 1.7.6.4\r
40 In-Reply-To: <1317660447-27520-1-git-send-email-schnouki@schnouki.net>\r
41 References: <1317660447-27520-1-git-send-email-schnouki@schnouki.net>\r
42 In-Reply-To: <871uuuywtt.fsf@convex-new.cs.unb.ca>\r
43 References: <871uuuywtt.fsf@convex-new.cs.unb.ca>\r
44 X-BeenThere: notmuch@notmuchmail.org\r
45 X-Mailman-Version: 2.1.13\r
46 Precedence: list\r
47 List-Id: "Use and development of the notmuch mail system."\r
48         <notmuch.notmuchmail.org>\r
49 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
51 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
52 List-Post: <mailto:notmuch@notmuchmail.org>\r
53 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
54 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
55         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
56 X-List-Received-Date: Mon, 03 Oct 2011 16:48:51 -0000\r
57 \r
58 From: Dmitry Kurochkin <dmitry.kurochkin@gmail.com>\r
59 \r
60 Remove `notmuch-show-move-past-invisible-backward' and\r
61 `notmuch-show-move-past-invisible-forward' functions which are\r
62 unused.\r
63 ---\r
64  emacs/notmuch-show.el |    8 --------\r
65  1 files changed, 0 insertions(+), 8 deletions(-)\r
66 \r
67 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
68 index bf267e8..e6265e8 100644\r
69 --- a/emacs/notmuch-show.el\r
70 +++ b/emacs/notmuch-show.el\r
71 @@ -970,14 +970,6 @@ All currently available key bindings:\r
72      (notmuch-show-move-to-message-top)\r
73      t))\r
74  \r
75 -(defun notmuch-show-move-past-invisible-forward ()\r
76 -  (while (point-invisible-p)\r
77 -    (forward-char)))\r
78 -\r
79 -(defun notmuch-show-move-past-invisible-backward ()\r
80 -  (while (point-invisible-p)\r
81 -    (backward-char)))\r
82 -\r
83  ;; Functions relating to the visibility of messages and their\r
84  ;; components.\r
85  \r
86 -- \r
87 1.7.6.4\r
88 \r