Variable: newsticker-sort-method

newsticker-sort-method is a customizable variable defined in newst-plainview.el.gz.

Value

sort-by-original-order

Documentation

Sort method for news items.

The following sort methods are available:
* sort-by-original-order keeps the order in which the items
  appear in the headline file (please note that for immortal items,
  which have been removed from the news feed, there is no original
  order),
* sort-by-time looks at the time at which an item has been seen
  the first time. The most recent item is put at top,
* sort-by-title will put the items in an alphabetical order.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defcustom newsticker-sort-method
  'sort-by-original-order
  "Sort method for news items.
The following sort methods are available:
* `sort-by-original-order' keeps the order in which the items
  appear in the headline file (please note that for immortal items,
  which have been removed from the news feed, there is no original
  order),
* `sort-by-time' looks at the time at which an item has been seen
  the first time.  The most recent item is put at top,
* `sort-by-title' will put the items in an alphabetical order."
  :type '(choice
          (const :tag "Keep original order" sort-by-original-order)
          (const :tag "Sort by time"        sort-by-time)
          (const :tag "Sort by title"       sort-by-title))
  :set #'newsticker--set-customvar-sorting
  :group 'newsticker-plainview)