Function: newsticker--group-find-parent-group
newsticker--group-find-parent-group is a byte-compiled function
defined in newst-treeview.el.gz.
Signature
(newsticker--group-find-parent-group FEED-OR-GROUP-NAME)
Documentation
Find group containing FEED-OR-GROUP-NAME.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-treeview.el.gz
(defun newsticker--group-find-parent-group (feed-or-group-name)
"Find group containing FEED-OR-GROUP-NAME."
(catch 'found
(mapc (lambda (n)
(newsticker--group-do-find-group feed-or-group-name
newsticker-groups
n))
newsticker-groups)
nil))