Variable: newsticker-desc-format

newsticker-desc-format is a customizable variable defined in newst-plainview.el.gz.

Value

"%d %c"

Documentation

Format string for news descriptions (contents).

The following printf-like specifiers can be used:
%c The contents (description) of the item.
%d The date the item was (first) retrieved. See
    newsticker-date-format.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defcustom newsticker-desc-format
  "%d %c"
  "Format string for news descriptions (contents).
The following printf-like specifiers can be used:
%c  The contents (description) of the item.
%d  The date the item was (first) retrieved.  See
    `newsticker-date-format'."
  :type 'string
  :set #'newsticker--set-customvar-formatting
  :group 'newsticker-plainview)