mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch.el: Fix notmuch-search-scroll-down to go to first thread.
When there's no more to scroll, we want to select the first thread. This used to work, and I'm not sure when it broke, (perhaps when we switched from post-process decorating of the search results to filtering). Fix the calculation to work again.
This commit is contained in:
parent
c24360e59e
commit
07a46d10ea
1 changed files with 2 additions and 2 deletions
|
@ -977,8 +977,8 @@ thread from that buffer can be show when done with this one)."
|
|||
; directly to that position. (We have to count lines since the
|
||||
; window-start position is not the same as point-min due to the
|
||||
; invisible thread-ID characters on the first line.
|
||||
(if (equal (count-lines (point-min) (window-start)) 1)
|
||||
(goto-char (window-start))
|
||||
(if (equal (count-lines (point-min) (window-start)) 0)
|
||||
(goto-char (point-min))
|
||||
(scroll-down nil)))
|
||||
|
||||
(defun notmuch-search-goto-last-thread ()
|
||||
|
|
Loading…
Reference in a new issue