mu4e-thread-message-folded-p: fix moving above first fold overlay

This commit is contained in:
Nicholas Vollmer 2023-06-07 13:35:37 -04:00
parent b9026c5042
commit c5f9f9f7e6
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ There are COUNT hidden and UNREAD messages overall."
(when-let* ((overlay (mu4e-thread-is-folded))
(beg (overlay-start overlay))
(end (overlay-end overlay)))
(and (>= (point) beg) (< (point) end))))
(and (>= (point) beg) (<= (point) end))))
(declare-function 'mu4e~headers-thread-root-p "mu4e-headers")
(defalias 'mu4e-thread-is-root 'mu4e~headers-thread-root-p)