From 93e8880c5536fece1845b3cdc605d99fd60f65a1 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Thu, 7 Jul 1994 01:43:06 +0000 Subject: [PATCH] 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. --- lisp/gnus.el | 8 -------- 1 file changed, 8 deletions(-) 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. -- 2.39.5