Function: newsticker--treeview-list-items-with-age-callback
newsticker--treeview-list-items-with-age-callback is a byte-compiled
function defined in newst-treeview.el.gz.
Signature
(newsticker--treeview-list-items-with-age-callback WIDGET CHANGED-WIDGET &rest AGES)
Documentation
Fill newsticker treeview list window with items of certain age.
This is a callback function for the treeview nodes. Argument WIDGET is the calling treeview widget. Argument CHANGED-WIDGET is the widget that actually has changed. Optional argument AGES is the list of ages that are to be shown.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-treeview.el.gz
(defun newsticker--treeview-list-items-with-age-callback (widget
_changed-widget
&rest ages)
"Fill newsticker treeview list window with items of certain age.
This is a callback function for the treeview nodes.
Argument WIDGET is the calling treeview widget.
Argument CHANGED-WIDGET is the widget that actually has changed.
Optional argument AGES is the list of ages that are to be shown."
(newsticker--treeview-list-clear)
(widget-put widget :nt-selected t)
(apply #'newsticker--treeview-list-items-with-age ages))