X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch.el;h=4e649d441401239b9ddafa9258ade2d838b56acf;hp=592c5ab58da2329806e99cbd695c1d713080db38;hb=306e19f5ddec1b10a0e99ccc54823544187e7ac3;hpb=afcd85ee71b9b835da88be371351f2ddab426714 diff --git a/notmuch.el b/notmuch.el index 592c5ab5..4e649d44 100644 --- a/notmuch.el +++ b/notmuch.el @@ -436,9 +436,15 @@ which this thread was originally shown." (defun notmuch-show-markup-header () (re-search-forward notmuch-show-header-begin-regexp) - (next-line 2) + (forward-line 1) (beginning-of-line) (let ((beg (point))) + (end-of-line) + ; Inverse video for subject + (overlay-put (make-overlay beg (point)) 'face '((cons :inverse-video t))) + (beginning-of-line) + (forward-line 2) + (set 'beg (point)) (re-search-forward notmuch-show-header-end-regexp) (overlay-put (make-overlay beg (match-beginning 0)) 'invisible 'notmuch-show-header)))