Signed-off-by: Pieter Praet <pie...@praet.org>
---
 emacs/notmuch.el |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index f11ec24..674deb7 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -801,13 +801,14 @@ non-authors is found, assume that all of the authors 
match."
              (while more
                (while (and (< line (length string)) (= (elt string line) ?\n))
                  (setq line (1+ line)))
-               (if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\([^][]*\\) 
\\(\\[[0-9/]*\\]\\) \\([^;]*\\); \\(.*\\) (\\([^()]*\\))$" string line)
+               (if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\([^][]*\\) 
\\(\\[[0-9/]*\\]\\) \\([^;]*\\); \\(.*\\) (\\([^()]*\\)) \\(.*\\)$" string line)
                    (let* ((thread-id (match-string 1 string))
                           (date (match-string 2 string))
                           (count (match-string 3 string))
                           (authors (match-string 4 string))
                           (subject (match-string 5 string))
                           (tags (match-string 6 string))
+                          (matched-msgids (match-string 7 string))
                           (tag-list (if tags (save-match-data (split-string 
tags)))))
                      (goto-char (point-max))
                      (if (/= (match-beginning 1) line)
@@ -816,6 +817,7 @@ non-authors is found, assume that all of the authors match."
                        (notmuch-search-show-result date count authors subject 
tags)
                        (notmuch-search-color-line beg (point-marker) tag-list)
                        (put-text-property beg (point-marker) 
'notmuch-search-thread-id thread-id)
+                       (put-text-property beg (point-marker) 
'notmuch-search-matched-msgids matched-msgids)
                        (put-text-property beg (point-marker) 
'notmuch-search-authors authors)
                        (put-text-property beg (point-marker) 
'notmuch-search-subject subject)
                        (if (string= thread-id notmuch-search-target-thread)
-- 
1.7.5.4

_______________________________________________
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch

Reply via email to