aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-09-27 16:54:59 +0200
committerLars Ingebrigtsen2019-09-27 16:54:59 +0200
commit09879c82b268916aefff8b120ed39e25d3ea47cc (patch)
tree46cff606bdcab28726aadc49522219400d1ff6f3
parent102486c16b97eec019ca9eaefa8de213666cea9d (diff)
downloademacs-09879c82b268916aefff8b120ed39e25d3ea47cc.tar.gz
emacs-09879c82b268916aefff8b120ed39e25d3ea47cc.zip
gnus-thread-ignore-subject doc string clarification
* lisp/gnus/gnus-sum.el (gnus-thread-ignore-subject): Document that when not ignoring subjects, sorting will not happen as expected (bug#35513).
-rw-r--r--lisp/gnus/gnus-sum.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 9d6f4568274..f83977ac5b8 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -345,9 +345,15 @@ If threads are hidden, you have to run the command
345 :type 'boolean) 345 :type 'boolean)
346 346
347(defcustom gnus-thread-ignore-subject t 347(defcustom gnus-thread-ignore-subject t
348 "If non-nil, which is the default, ignore subjects and do all threading based on the Reference header. 348 "If non-nil, ignore subjects when creating threads.
349
349If nil, articles that have different subjects from their parents will 350If nil, articles that have different subjects from their parents will
350start separate threads." 351start separate threads.
352
353Threads that are split because the subject changes will still be
354sorted as if they were part of the same thread, and
355`gnus-thread-sort-functions' will not apply to these split
356threads."
351 :group 'gnus-thread 357 :group 'gnus-thread
352 :type 'boolean) 358 :type 'boolean)
353 359