Variable: newsticker--cache

newsticker--cache is a variable defined in newst-backend.el.gz.

Value

nil

Documentation

Cached newsticker data.

This is a list of the form

 ((label1
   (title description link time age index preformatted-contents
    preformatted-title extra-elements)
   ...)
  (label2
   (title description link time age index preformatted-contents
    preformatted-title extra-elements)
   ...)
  ...)

where LABEL is a symbol. TITLE, DESCRIPTION, and LINK are strings. TIME is a time value as returned by current-time. AGE is a symbol: new, old, immortal, and obsolete denote ordinary news items, whereas feed denotes an item which is not a headline but describes the feed itself. INDEX denotes the original position of the item -- used for restoring the original order. PREFORMATTED-CONTENTS and PREFORMATTED-TITLE hold the formatted contents of the item's description and title. This speeds things up if HTML rendering is used, which is rather slow. EXTRA-ELEMENTS is an alist containing additional elements.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defvar newsticker--cache nil "Cached newsticker data.
This is a list of the form

 ((label1
   (title description link time age index preformatted-contents
    preformatted-title extra-elements)
   ...)
  (label2
   (title description link time age index preformatted-contents
    preformatted-title extra-elements)
   ...)
  ...)

where LABEL is a symbol.  TITLE, DESCRIPTION, and LINK are
strings.  TIME is a time value as returned by `current-time'.
AGE is a symbol: `new', `old', `immortal', and `obsolete' denote
ordinary news items, whereas `feed' denotes an item which is not a
headline but describes the feed itself.  INDEX denotes the
original position of the item -- used for restoring the original
order.  PREFORMATTED-CONTENTS and PREFORMATTED-TITLE hold the
formatted contents of the item's description and title.  This
speeds things up if HTML rendering is used, which is rather
slow.  EXTRA-ELEMENTS is an alist containing additional elements.")