Function: newsticker--set-customvar-sorting

newsticker--set-customvar-sorting is a byte-compiled function defined in newst-plainview.el.gz.

Signature

(newsticker--set-customvar-sorting SYMBOL VALUE)

Documentation

Set newsticker-variable SYMBOL value to VALUE.

Calls all actions which are necessary in order to make the new value effective.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker--set-customvar-sorting (symbol value)
  "Set newsticker-variable SYMBOL value to VALUE.
Calls all actions which are necessary in order to make the new
value effective."
  (if (or (not (boundp symbol))
          (equal (symbol-value symbol) value))
      (set symbol value)
    ;; something must have changed
    (set symbol value)
    (message "Applying new sort method...")
    (when (fboundp 'newsticker--cache-sort) (newsticker--cache-sort))
    (when (fboundp 'newsticker--buffer-set-uptodate)
      (newsticker--buffer-set-uptodate nil))
    (message "Applying new sort method...done")))