mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch.el: Fix to claim correct number of lines for hidden signature.
Previously, it was reporting that all signatures were 0 lines.
This commit is contained in:
parent
a1f631ab6b
commit
3604a19beb
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ which this thread was originally shown."
|
|||
(let ((overlay (make-overlay beg-sub end)))
|
||||
(overlay-put overlay 'invisible 'notmuch-show-signature)
|
||||
(overlay-put overlay 'before-string
|
||||
(concat "[" (number-to-string (count-lines beg-sub (point)))
|
||||
(concat "[" (number-to-string (count-lines beg-sub end))
|
||||
"-line signature.]"))
|
||||
(goto-char end)))
|
||||
(next-line))))
|
||||
|
|
Loading…
Reference in a new issue