Function: gnus-group-group-indentation

gnus-group-group-indentation is a byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-group-indentation)

Documentation

Get the indentation of the newsgroup on the current line.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-group-indentation ()
  "Get the indentation of the newsgroup on the current line."
  (or (get-text-property (line-beginning-position) 'gnus-indentation)
      (and gnus-group-indentation-function
	   (funcall gnus-group-indentation-function))
      ""))