# HG changeset patch # User Michael I. Bushnell # Date 773545386 0 # Node ID a24fad61dbac165e0e22cfd5341b127e1dcd91df # Parent 6b104526819d49011ef877e59c373357244f00f9 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 -r 6b104526819d -r a24fad61dbac lisp/=gnus.el --- a/lisp/=gnus.el Wed Jul 06 23:05:34 1994 +0000 +++ b/lisp/=gnus.el Thu Jul 07 01:43:06 1994 +0000 @@ -3532,8 +3532,6 @@ (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 @@ (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 @@ (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 @@ (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.