Remove a misleading message in gnus-summary-hide-thread

* lisp/gnus/gnus-sum.el (gnus-summary-hide-thread):
Jump past invisible thread instead of begging off with an out-of-band
diagnostic (bug#43538).
This commit is contained in:
dickmao 2020-09-21 17:19:14 +02:00 committed by Lars Ingebrigtsen
parent d5d642eb71
commit c8f809dbb9

View file

@ -11828,9 +11828,9 @@ Returns nil if no threads were there to be hidden."
(overlay-put ol 'invisible 'gnus-sum)
(overlay-put ol 'evaporate t)))
(gnus-summary-goto-subject article)
;; We moved backward past the start point (invisible thread?)
(when (> start (point))
(message "Hiding the thread moved us backwards, aborting!")
(goto-char (point-max))))
(goto-char starteol)))
(goto-char start)
nil))))