aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-04 15:19:08 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-04 15:19:08 -0800
commit3604a19beb0c6f90bea199884d0ac696c2de4505 (patch)
treea7815aa00a0c0238cf99cf99b159393386308942 /notmuch.el
parenta1f631ab6b533da5bbada0ed97a33da23f4a29c6 (diff)
notmuch.el: Fix to claim correct number of lines for hidden signature.
Previously, it was reporting that all signatures were 0 lines.
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
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))))