summaryrefslogtreecommitdiff
path: root/lisp/=gnus.el
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-07-07 01:43:06 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-07-07 01:43:06 +0000
commita1674de98a82d4850dedaeadc94d179e44b32fb7 (patch)
tree971073582480a46fd828ca87380c26963f7bdee9 /lisp/=gnus.el
parentc985dfb09d5bb0f91e52b93c62583634d2f8ace2 (diff)
downloademacs-a1674de98a82d4850dedaeadc94d179e44b32fb7.tar.gz
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.
Diffstat (limited to 'lisp/=gnus.el')
-rw-r--r--lisp/=gnus.el8
1 files changed, 0 insertions, 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.