Function: newsticker--treeview-list-update-highlight

newsticker--treeview-list-update-highlight is a byte-compiled function defined in newst-treeview.el.gz.

Signature

(newsticker--treeview-list-update-highlight)

Documentation

Update the highlight in the treeview list buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-treeview.el.gz
(defun newsticker--treeview-list-update-highlight ()
  "Update the highlight in the treeview list buffer."
  (newsticker--treeview-list-clear-highlight)
  (with-current-buffer (newsticker--treeview-list-buffer)
    (let ((inhibit-read-only t))
      (put-text-property (point-at-bol) (point-at-eol) :nt-selected t))
    (newsticker--treeview-list-update-faces)))