From 3604a19beb0c6f90bea199884d0ac696c2de4505 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 4 Nov 2009 15:19:08 -0800 Subject: [PATCH] notmuch.el: Fix to claim correct number of lines for hidden signature. Previously, it was reporting that all signatures were 0 lines. --- notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notmuch.el b/notmuch.el index de44d247..0599af5f 100644 --- a/notmuch.el +++ b/notmuch.el @@ -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)))) -- 2.43.0