Function: newsticker--opml-insert-elt
newsticker--opml-insert-elt is a byte-compiled function defined in
newst-backend.el.gz.
Signature
(newsticker--opml-insert-elt ELT DEPTH)
Documentation
Insert an OPML ELT with indentation level DEPTH.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--opml-insert-elt (elt depth)
"Insert an OPML ELT with indentation level DEPTH."
(if (listp elt)
(newsticker--opml-insert-group elt (+ 2 depth))
(newsticker--opml-insert-feed elt (+ 2 depth))))