From: Michael I. Bushnell Date: Thu, 7 Jul 1994 01:43:06 +0000 (+0000) Subject: Turning on gnus-show-threads in these four functions was a mistake; X-Git-Tag: emacs-19.34~7691 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=93e8880c5536fece1845b3cdc605d99fd60f65a1;p=emacs.git Turning on gnus-show-threads in these four functions was a mistake; these functions are called by generic code a lot--the effect was that a user was forced to use the threads feature no matter what. In addition the code to turn on gnus-show-threads was incorrect. --- diff --git a/lisp/gnus.el b/lisp/gnus.el index e1b43d40630..24fa8c1b8d5 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -3532,8 +3532,6 @@ With arg, turn showing conversation threads on iff arg is positive." (defun gnus-summary-show-all-threads () "Show all thread subtrees." (interactive) - (or gnus-show-threads - (gnus-summary-show-all-threads 1)) (if gnus-show-threads (save-excursion (let ((buffer-read-only nil)) @@ -3543,8 +3541,6 @@ With arg, turn showing conversation threads on iff arg is positive." (defun gnus-summary-show-thread () "Show thread subtrees." (interactive) - (or gnus-show-threads - (gnus-summary-show-all-threads 1)) (if gnus-show-threads (save-excursion (let ((buffer-read-only nil)) @@ -3558,8 +3554,6 @@ With arg, turn showing conversation threads on iff arg is positive." (defun gnus-summary-hide-all-threads () "Hide all thread subtrees." (interactive) - (or gnus-show-threads - (gnus-summary-show-all-threads 1)) (if gnus-show-threads (save-excursion ;; Adjust cursor point. @@ -3575,8 +3569,6 @@ With arg, turn showing conversation threads on iff arg is positive." (defun gnus-summary-hide-thread () "Hide thread subtrees." (interactive) - (or gnus-show-threads - (gnus-summary-show-all-threads 1)) (if gnus-show-threads (save-excursion ;; Adjust cursor point.