aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordickmao2020-09-21 17:19:14 +0200
committerLars Ingebrigtsen2020-09-21 17:19:14 +0200
commitc8f809dbb95de2458260b08a565123bb11b6c5eb (patch)
tree25a38c432f7faf1d785d794da1d15c9f3bd85403
parentd5d642eb71d8228d5a408a3d43ca1f4a5b500b9d (diff)
downloademacs-c8f809dbb95de2458260b08a565123bb11b6c5eb.tar.gz
emacs-c8f809dbb95de2458260b08a565123bb11b6c5eb.zip
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).
-rw-r--r--lisp/gnus/gnus-sum.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 8e27a94e5b8..87e48f6b04d 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -11828,9 +11828,9 @@ Returns nil if no threads were there to be hidden."
11828 (overlay-put ol 'invisible 'gnus-sum) 11828 (overlay-put ol 'invisible 'gnus-sum)
11829 (overlay-put ol 'evaporate t))) 11829 (overlay-put ol 'evaporate t)))
11830 (gnus-summary-goto-subject article) 11830 (gnus-summary-goto-subject article)
11831 ;; We moved backward past the start point (invisible thread?)
11831 (when (> start (point)) 11832 (when (> start (point))
11832 (message "Hiding the thread moved us backwards, aborting!") 11833 (goto-char starteol)))
11833 (goto-char (point-max))))
11834 (goto-char start) 11834 (goto-char start)
11835 nil)))) 11835 nil))))
11836 11836