Function: gnus-current-topic
gnus-current-topic is a byte-compiled function defined in
gnus-topic.el.gz.
Signature
(gnus-current-topic)
Documentation
Return the name of the current topic.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-current-topic ()
"Return the name of the current topic."
(let ((result
(or (get-text-property (point) 'gnus-topic)
(save-excursion
(and (gnus-goto-char (previous-single-property-change
(point) 'gnus-topic))
(get-text-property (max (1- (point)) (point-min))
'gnus-topic))))))
result))