Variable: newsticker-statistics-format

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

Value

"[%n + %i + %o + %O = %a]"

Documentation

Format for the statistics part in feed lines.

The following printf-like specifiers can be used:
%a The number of all items in the feed.
%i The number of immortal items in the feed.
%n The number of new items in the feed.
%o The number of old items in the feed.
%O The number of obsolete items in the feed.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defcustom newsticker-statistics-format
  "[%n + %i + %o + %O = %a]"
  "Format for the statistics part in feed lines.
The following printf-like specifiers can be used:
%a  The number of all items in the feed.
%i  The number of immortal items in the feed.
%n  The number of new items in the feed.
%o  The number of old items in the feed.
%O  The number of obsolete items in the feed."
  :type 'string
  :set #'newsticker--set-customvar-formatting
  :group 'newsticker-plainview)