Function: newsticker--cache-set-preformatted-contents
newsticker--cache-set-preformatted-contents is a byte-compiled
function defined in newst-backend.el.gz.
Signature
(newsticker--cache-set-preformatted-contents ITEM CONTENTS)
Documentation
Set preformatted contents of ITEM to CONTENTS.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
;; ======================================================================
;;; Manipulation of cached data
;; ======================================================================
(defun newsticker--cache-set-preformatted-contents (item contents)
"Set preformatted contents of ITEM to CONTENTS."
(if (nthcdr 6 item)
(setcar (nthcdr 6 item) contents)
(setcdr (nthcdr 5 item) (list contents))))