Function: gnus-topic-hide-topic

gnus-topic-hide-topic is an interactive and byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-topic-hide-topic &optional PERMANENT)

Documentation

Hide the current topic.

If PERMANENT, make it stay hidden in subsequent sessions as well.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-hide-topic (&optional permanent)
  "Hide the current topic.
If PERMANENT, make it stay hidden in subsequent sessions as well."
  (interactive "P" gnus-topic-mode)
  (when (gnus-current-topic)
    (gnus-topic-goto-topic (gnus-current-topic))
    (if permanent
	(setcar (cddr
		 (cadr
		  (gnus-topic-find-topology (gnus-current-topic))))
		'hidden))
    (gnus-topic-remove-topic nil nil)))