mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch.el: Fix notmuch-search-goto-last-thread.
This broke when we switched to filter-based processing of search results and added the "End of search results" line onto the end. Fix to skip ignore that line when moving to the last thread.
This commit is contained in:
parent
07a46d10ea
commit
b7a6e05980
1 changed files with 1 additions and 1 deletions
|
@ -985,7 +985,7 @@ thread from that buffer can be show when done with this one)."
|
|||
"Move point to the last thread in the buffer."
|
||||
(interactive)
|
||||
(goto-char (point-max))
|
||||
(forward-line -1))
|
||||
(forward-line -2))
|
||||
|
||||
(defface notmuch-tag-face
|
||||
'((((class color)
|
||||
|
|
Loading…
Reference in a new issue