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 F05FB421192 for ; Tue, 24 Jan 2012 03:38:04 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[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 fVmtGrHa6Ctz for ; Tue, 24 Jan 2012 03:38:02 -0800 (PST) Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com [209.85.212.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id AC612429E54 for ; Tue, 24 Jan 2012 03:38:01 -0800 (PST) Received: by wibhi8 with SMTP id hi8so1469492wib.26 for ; Tue, 24 Jan 2012 03:38:00 -0800 (PST) MIME-Version: 1.0 Received: by 10.180.81.66 with SMTP id y2mr19814993wix.20.1327405080413; Tue, 24 Jan 2012 03:38:00 -0800 (PST) Received: from hotblack-desiato.hh.sledj.net (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25]) by mx.google.com with ESMTPS id eq5sm51535261wib.2.2012.01.24.03.37.58 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 24 Jan 2012 03:37:59 -0800 (PST) Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000) id 3EFDE9FD48; Tue, 24 Jan 2012 11:37:57 +0000 (GMT) From: David Edmondson To: notmuch@notmuchmail.org Subject: [PATCH 1/2] emacs: Use text properties rather than overlays in `notmuch-show-mode'. Date: Tue, 24 Jan 2012 11:36:46 +0000 Message-Id: <1327405007-4026-2-git-send-email-dme@dme.org> X-Mailer: git-send-email 1.7.8.3 In-Reply-To: <1327405007-4026-1-git-send-email-dme@dme.org> References: <1327405007-4026-1-git-send-email-dme@dme.org> X-Gm-Message-State: ALoCoQlRKoszs2VPoVgyWVX4moy2RnU8eoyVFtIp38FrD3ThXRvrjtnjfDWkd5LC4+IUqGDc7RaC 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: Tue, 24 Jan 2012 11:38:05 -0000 Except for where invisibility is involved, replace the use of overlays in `notmuch-show-mode' with text properties, which are more efficient and can be merged together more effectively. --- emacs/notmuch-show.el | 66 +++++++++++++++++++++++++++++++----------------- emacs/notmuch-wash.el | 8 ++++- 2 files changed, 48 insertions(+), 26 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index e6a5b31..d6a0ac0 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -258,10 +258,10 @@ operation on the contents of the current buffer." (t 'message-header-other)))) - (overlay-put (make-overlay (point) (re-search-forward ":")) - 'face 'message-header-name) - (overlay-put (make-overlay (point) (re-search-forward ".*$")) - 'face face))) + (put-text-property (point) (re-search-forward ":") + 'face 'message-header-name) + (put-text-property (point) (re-search-forward ".*$") + 'face face))) (defun notmuch-show-colour-headers () "Apply some colouring to the current headers." @@ -278,12 +278,11 @@ operation on the contents of the current buffer." "Update the displayed tags of the current message." (save-excursion (goto-char (notmuch-show-message-top)) - (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t) - (let ((inhibit-read-only t)) - (replace-match (concat "(" - (propertize (mapconcat 'identity tags " ") - 'face 'notmuch-tag-face) - ")")))))) + (when (re-search-forward "(\\([^()]*\\))$" (line-end-position) t) + (let ((inhibit-read-only t)) + (replace-match (propertize (mapconcat 'identity tags " ") + 'face '(notmuch-tag-face notmuch-message-summary-face)) + nil nil nil 1))))) (defun notmuch-show-clean-address (address) "Try to clean a single email ADDRESS for display. Return @@ -310,15 +309,26 @@ unchanged ADDRESS if parsing fails." "Insert a notmuch style headerline based on HEADERS for a message at DEPTH in the current thread." (let ((start (point))) - (insert (notmuch-show-spaces-n (* notmuch-show-indent-messages-width depth)) - (notmuch-show-clean-address (plist-get headers :From)) - " (" - date - ") (" - (propertize (mapconcat 'identity tags " ") - 'face 'notmuch-tag-face) - ")\n") - (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face))) + (insert + (propertize (concat (notmuch-show-clean-address (plist-get headers :From)) + " (" + date + ") (") + 'face 'notmuch-message-summary-face) + (propertize (mapconcat 'identity tags " ") + 'face '(notmuch-tag-face notmuch-message-summary-face)) + (propertize ")\n" + 'face 'notmuch-message-summary-face)) + + ;; Ensure that any insertions at the start of this line (usually + ;; just spaces for indentation purposes) inherit the face of the + ;; rest of the line... + (put-text-property start (1+ start) + 'front-sticky '(face)) + ;; ...and that insertions at the end of this region do _not_ + ;; inherit the face of the rest of this line. + (put-text-property (1- (point)) (point) + 'rear-nonsticky '(face)))) (defun notmuch-show-insert-header (header header-value) "Insert a single header." @@ -753,8 +763,15 @@ current buffer, if possible." (defun notmuch-show-insert-bodypart (msg part depth) "Insert the body part PART at depth DEPTH in the current thread." (let ((content-type (downcase (plist-get part :content-type))) - (nth (plist-get part :id))) - (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type)) + (nth (plist-get part :id)) + (start (point))) + (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type) + + ;; Ensure that face properties applied to text in the buffer by + ;; the part handler don't leak into the following text. + (put-text-property start (point-max) + 'rear-nonsticky '(face))) + ;; Some of the body part handlers leave point somewhere up in the ;; part, so we make sure that we're down at the end. (goto-char (point-max)) @@ -845,11 +862,12 @@ current buffer, if possible." (setq body-end (point-marker)) (setq content-end (point-marker)) - ;; Indent according to the depth in the thread. - (indent-rigidly content-start content-end (* notmuch-show-indent-messages-width depth)) - (setq message-end (point-max-marker)) + ;; Indent according to the depth in the thread. + (indent-rigidly message-start message-end + (* notmuch-show-indent-messages-width depth)) + ;; Save the extents of this message over the whole text of the ;; message. (put-text-property message-start message-end :notmuch-message-extent (cons message-start message-end)) diff --git a/emacs/notmuch-wash.el b/emacs/notmuch-wash.el index 5c1e830..84428a4 100644 --- a/emacs/notmuch-wash.el +++ b/emacs/notmuch-wash.el @@ -183,7 +183,9 @@ insert before the button, probably for indentation." (let* ((cite-start (match-beginning 0)) (cite-end (match-end 0)) (cite-lines (count-lines cite-start cite-end))) - (overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text) + (put-text-property cite-start cite-end 'face 'message-cited-text) + ;; Ensure that the next line doesn't inherit our face. + (put-text-property (1- cite-end) cite-end 'rear-nonsticky '(face)) (when (> cite-lines (+ notmuch-wash-citation-lines-prefix notmuch-wash-citation-lines-suffix 1)) @@ -205,7 +207,9 @@ insert before the button, probably for indentation." (sig-end-marker (make-marker))) (set-marker sig-start-marker sig-start) (set-marker sig-end-marker (point-max)) - (overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text) + (put-text-property sig-start-marker sig-end-marker 'face 'message-cited-text) + ;; Ensure that the next line doesn't inherit our face. + (put-text-property (1- sig-end-marker) sig-end-marker 'rear-nonsticky '(face)) (notmuch-wash-region-to-button msg sig-start-marker sig-end-marker "signature" "\n")))))) -- 1.7.8.3