From 1b2ea703e758843a515d33cc78fdfec4f758ce6c Mon Sep 17 00:00:00 2001 From: David Edmondson Date: Tue, 9 Nov 2010 18:15:31 +0000 Subject: [PATCH] emacs: Correctly count the number of lines in a signature. --- emacs/notmuch-wash.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/notmuch-wash.el b/emacs/notmuch-wash.el index 26a3f881..cfcfb21c 100644 --- a/emacs/notmuch-wash.el +++ b/emacs/notmuch-wash.el @@ -145,7 +145,7 @@ is what to put on the button." (re-search-forward notmuch-wash-signature-regexp nil t)) (let* ((sig-start (match-beginning 0)) (sig-end (match-end 0)) - (sig-lines (1- (count-lines sig-start (point-max))))) + (sig-lines (count-lines sig-start (point-max)))) (if (<= sig-lines notmuch-wash-signature-lines-max) (let ((sig-start-marker (make-marker)) (sig-end-marker (make-marker))) -- 2.43.0