Function: newsticker--count-groups
newsticker--count-groups is a byte-compiled function defined in
newst-treeview.el.gz.
Signature
(newsticker--count-groups GROUP)
Documentation
Recursively count number of subgroups of GROUP.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-treeview.el.gz
(defun newsticker--count-groups (group)
"Recursively count number of subgroups of GROUP."
(let ((result 1))
(mapc (lambda (g)
(if (listp g)
(setq result (+ result (newsticker--count-groups g)))))
(cdr group))
result))