Function: newsticker--set-customvar-formatting
newsticker--set-customvar-formatting is a byte-compiled function
defined in newst-reader.el.gz.
Signature
(newsticker--set-customvar-formatting 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-reader.el.gz
;; ======================================================================
;;; Customization
;; ======================================================================
(defun newsticker--set-customvar-formatting (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)
(when (fboundp 'newsticker--forget-preformatted)
(newsticker--forget-preformatted))))