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 CC57142119B for ; Thu, 12 Jul 2012 17:45:26 -0700 (PDT) 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 DAdsDdqPZxm2 for ; Thu, 12 Jul 2012 17:45:25 -0700 (PDT) Received: from dmz-mailsec-scanner-4.mit.edu (DMZ-MAILSEC-SCANNER-4.MIT.EDU [18.9.25.15]) by olra.theworths.org (Postfix) with ESMTP id BA661431FAE for ; Thu, 12 Jul 2012 17:45:25 -0700 (PDT) X-AuditID: 1209190f-b7f306d0000008b4-93-4fff6fa596d1 Received: from mailhub-auth-4.mit.edu ( [18.7.62.39]) by dmz-mailsec-scanner-4.mit.edu (Symantec Messaging Gateway) with SMTP id F4.91.02228.5AF6FFF4; Thu, 12 Jul 2012 20:45:25 -0400 (EDT) Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103]) by mailhub-auth-4.mit.edu (8.13.8/8.9.2) with ESMTP id q6D0jPKO021124; Thu, 12 Jul 2012 20:45:25 -0400 Received: from drake.dyndns.org (209-6-116-242.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com [209.6.116.242]) (authenticated bits=0) (User authenticated as amdragon@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id q6D0jND5010663 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT); Thu, 12 Jul 2012 20:45:24 -0400 (EDT) Received: from amthrax by drake.dyndns.org with local (Exim 4.77) (envelope-from ) id 1SpU0Z-0005Rw-Gj; Thu, 12 Jul 2012 20:45:23 -0400 From: Austin Clements To: notmuch@notmuchmail.org Subject: [PATCH 2/7] emacs: Use text properties instead of overlays for tag coloring Date: Thu, 12 Jul 2012 20:45:14 -0400 Message-Id: <1342140319-19859-3-git-send-email-amdragon@mit.edu> X-Mailer: git-send-email 1.7.10 In-Reply-To: <1342140319-19859-1-git-send-email-amdragon@mit.edu> References: <1342140319-19859-1-git-send-email-amdragon@mit.edu> X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrIIsWRmVeSWpSXmKPExsUixG6nrrs0/7+/wfnLYhbXb85kdmD0eLbq FnMAYxSXTUpqTmZZapG+XQJXxuyNKQUzpCvW7O5mbWDsEuti5OSQEDCR6N17iBHCFpO4cG89 WxcjF4eQwD5GiV9LLjKDJIQENjBKnGplhkg8YpJYeHEiK4Qzl1Fi4+wnrCBVbAIaEtv2Lwcb JSIgLbHz7mygOAcHs4CaxJ8uFZCwsECIxIV3p1hAbBYBVYkl626zg9i8Ag4S369OhbpCXuLp /T42EJtTwFFiw5cLrBBHOEg0HpvJPIGRfwEjwypG2ZTcKt3cxMyc4tRk3eLkxLy81CJdE73c zBK91JTSTYygkOGU5N/B+O2g0iFGAQ5GJR7e37H//YVYE8uKK3MPMUpyMCmJ8rpkA4X4kvJT KjMSizPii0pzUosPMUpwMCuJ8K6zB8rxpiRWVqUW5cOkpDlYlMR5r6bc9BcSSE8sSc1OTS1I LYLJynBwKEnwcgJjQ0iwKDU9tSItM6cEIc3EwQkynAdo+LY8kOHFBYm5xZnpEPlTjIpS4rwX QBICIImM0jy4XlhMv2IUB3pFmHcnSBUPMB3Adb8CGswENHjWz38gg0sSEVJSDYxlbZc/xu5e f/0P14y36snZFRWPpA5dMghcsex8ubm/LsPL/Zt89ZzY9/A8/F0cdo+tuiFTpfLNVV++3+ll 89oexngVySz3Nzz8ZrLz1uKzi14fna7apZiR8WzWld3nP/48x5sbyV10VMRMNL98qcuxyG2l VeeemIvGHQy+pnrc17feY99nzXIlluKMREMt5qLiRAD+QNtuxAIAAA== 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: Fri, 13 Jul 2012 00:45:27 -0000 Previously, tag-based search result highlighting was done by creating an overlay over each search result. However, overlays have annoying front- and rear-advancement semantics that make it difficult to manipulate text at their boundaries, which the next patch will do. They also have performance problems (creating an overlay is linear in the number of overlays between point and the new overlay, making highlighting a search buffer quadratic in the number of results). Text properties have neither problem. However, text properties make it more difficult to apply multiple faces since, unlike with overlays, a given character can only have a single 'face text property. Hence, we introduce a utility function that combines faces into any existing 'face text properties. Using this utility function, it's straightforward to apply all of the appropriate tag faces in notmuch-search-color-line. --- emacs/notmuch-lib.el | 15 +++++++++++++++ emacs/notmuch.el | 21 +++++++-------------- 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index aa25513..30db58f 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -269,6 +269,21 @@ current buffer, if possible." (loop for (key value . rest) on plist by #'cddr collect (cons (intern (substring (symbol-name key) 1)) value))) +(defun notmuch-combine-face-text-property (start end face) + "Combine FACE into the 'face text property between START and END. + +This function combines FACE with any existing faces between START +and END. Attributes specified by FACE take precedence over +existing attributes. FACE must be a face name (a symbol or +string), a property list of face attributes, or a list of these." + + (let ((pos start)) + (while (< pos end) + (let ((cur (get-text-property pos 'face)) + (next (next-single-property-change pos 'face nil end))) + (put-text-property pos next 'face (cons face cur)) + (setq pos next))))) + ;; Compatibility functions for versions of emacs before emacs 23. ;; ;; Both functions here were copied from emacs 23 with the following copyright: diff --git a/emacs/notmuch.el b/emacs/notmuch.el index ef18927..82c148d 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -633,20 +633,13 @@ foreground and blue background." (defun notmuch-search-color-line (start end line-tag-list) "Colorize lines in `notmuch-show' based on tags." - ;; Create the overlay only if the message has tags which match one - ;; of those specified in `notmuch-search-line-faces'. - (let (overlay) - (mapc (lambda (elem) - (let ((tag (car elem)) - (attributes (cdr elem))) - (when (member tag line-tag-list) - (when (not overlay) - (setq overlay (make-overlay start end))) - ;; Merge the specified properties with any already - ;; applied from an earlier match. - (overlay-put overlay 'face - (append (overlay-get overlay 'face) attributes))))) - notmuch-search-line-faces))) + (mapc (lambda (elem) + (let ((tag (car elem)) + (attributes (cdr elem))) + (when (member tag line-tag-list) + (notmuch-combine-face-text-property start end attributes)))) + ;; Reverse the list so earlier entries take precedence + (reverse notmuch-search-line-faces))) (defun notmuch-search-author-propertize (authors) "Split `authors' into matching and non-matching authors and -- 1.7.10