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 6C118431FD2 for ; Mon, 23 Nov 2009 23:45:26 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 YSflKqeOvXxg for ; Mon, 23 Nov 2009 23:45:21 -0800 (PST) Received: from mail-yw0-f200.google.com (mail-yw0-f200.google.com [209.85.211.200]) by olra.theworths.org (Postfix) with ESMTP id C96AF431FAE for ; Mon, 23 Nov 2009 23:45:21 -0800 (PST) Received: by ywh38 with SMTP id 38so5718812ywh.6 for ; Mon, 23 Nov 2009 23:45:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:to:cc:subject :date:message-id:x-mailer:in-reply-to:references; bh=VaP9IFi7dmhl1NKwC84juvJ/3G7ROwGM42uQj55szu8=; b=u5XpJu5nvTqhMnmHjRuH+OxlBa9lgYg5eEbPELRhBSLUAmCbI6OXVH/Al40+ZV8qJ0 ctcn39gEgybmrwe0Gz8WnFAodJu3zD1RcvDMe7WAa9av5q31BNI9EwD7ZkMJFylMwXSc Fch/g+tRw4CAo100g5XlWFWQgvoG9UW7tDlV4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=UF3XalmuTk32Pg494KeXER+J/WBtPQllaYB7abwPjpAgXMNxDNMvCUJp5dvaVKGGhs IqwfeCB5d/p0a5WF5zlUkpaGmboMhTCGzqmKQ7v6XF4l0VQYp30uT/JEvNYgfAGdTTDe bZGV/6d4/I0IW7bbYN7P9GkbhZiQLNYEbnWfA= Received: by 10.150.172.38 with SMTP id u38mr10408252ybe.328.1259048721293; Mon, 23 Nov 2009 23:45:21 -0800 (PST) Received: from fortitudo (70-36-144-85.dsl.dynamic.sonic.net [70.36.144.85]) by mx.google.com with ESMTPS id 15sm2489419gxk.4.2009.11.23.23.45.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 23 Nov 2009 23:45:20 -0800 (PST) Received: from alexbl (uid 1001) (envelope-from alexbl@fortitudo) id 7056 by fortitudo (DragonFly Mail Agent) Mon, 23 Nov 2009 23:45:24 -0800 From: Alexander Botero-Lowry To: notmuch@notmuchmail.org Date: Mon, 23 Nov 2009 23:45:04 -0800 Message-Id: <1259048707-3062-2-git-send-email-alex.boterolowry@gmail.com> X-Mailer: git-send-email 1.6.5.2 In-Reply-To: <1259048707-3062-1-git-send-email-alex.boterolowry@gmail.com> References: <1259048707-3062-1-git-send-email-alex.boterolowry@gmail.com> Subject: [notmuch] [PATCH 2/5] cleanup a lot of left-overs from the global invis X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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: Tue, 24 Nov 2009 07:45:26 -0000 --- notmuch.el | 36 ------------------------------------ 1 files changed, 0 insertions(+), 36 deletions(-) diff --git a/notmuch.el b/notmuch.el index 8aee286..ed1f7cb 100644 --- a/notmuch.el +++ b/notmuch.el @@ -62,8 +62,6 @@ (define-key map "a" 'notmuch-show-archive-thread) (define-key map "A" 'notmuch-show-mark-read-then-archive-thread) (define-key map "b" 'notmuch-show-toggle-body-read-visible) - (define-key map "c" 'notmuch-show-toggle-citations-visible) - (define-key map "h" 'notmuch-show-toggle-headers-visible) (define-key map "m" 'message-mail) (define-key map "n" 'notmuch-show-next-message) (define-key map "N" 'notmuch-show-mark-read-then-next-open-message) @@ -72,7 +70,6 @@ (define-key map (kbd "C-p") 'notmuch-show-previous-line) (define-key map "q" 'kill-this-buffer) (define-key map "r" 'notmuch-show-reply) - (define-key map "s" 'notmuch-show-toggle-signatures-visible) (define-key map "v" 'notmuch-show-view-all-mime-parts) (define-key map "w" 'notmuch-show-view-raw-message) (define-key map "x" 'kill-this-buffer) @@ -666,39 +663,6 @@ which this thread was originally shown." (notmuch-show-markup-message))) (notmuch-show-hide-markers)) -(defun notmuch-show-toggle-citations-visible () - "Toggle visibility of citations" - (interactive) - (if notmuch-show-citations-visible - (add-to-invisibility-spec 'notmuch-show-citation) - (remove-from-invisibility-spec 'notmuch-show-citation)) - (set 'notmuch-show-citations-visible (not notmuch-show-citations-visible)) - ; Need to force the redisplay for some reason - (force-window-update) - (redisplay t)) - -(defun notmuch-show-toggle-signatures-visible () - "Toggle visibility of signatures" - (interactive) - (if notmuch-show-signatures-visible - (add-to-invisibility-spec 'notmuch-show-signature) - (remove-from-invisibility-spec 'notmuch-show-signature)) - (set 'notmuch-show-signatures-visible (not notmuch-show-signatures-visible)) - ; Need to force the redisplay for some reason - (force-window-update) - (redisplay t)) - -(defun notmuch-show-toggle-headers-visible () - "Toggle visibility of header fields" - (interactive) - (if notmuch-show-headers-visible - (add-to-invisibility-spec 'notmuch-show-header) - (remove-from-invisibility-spec 'notmuch-show-header)) - (set 'notmuch-show-headers-visible (not notmuch-show-headers-visible)) - ; Need to force the redisplay for some reason - (force-window-update) - (redisplay t)) - (defun notmuch-show-toggle-body-read-visible () "Toggle visibility of message bodies of read messages" (interactive) -- 1.6.5.2