]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove a misleading message in gnus-summary-hide-thread
authordickmao <none>
Mon, 21 Sep 2020 15:19:14 +0000 (17:19 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 21 Sep 2020 15:19:14 +0000 (17:19 +0200)
* 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).

lisp/gnus/gnus-sum.el

index 8e27a94e5b87e60bf4745cd141d6a8e830c0722e..87e48f6b04d27f4d7aca19b72dfebfc337f690e1 100644 (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))))