Variable: newsticker-retrieval-method

newsticker-retrieval-method is a customizable variable defined in newst-backend.el.gz.

Value

intern

Documentation

Method for retrieving news from the web, either intern or extern.

Default value intern uses Emacs' built-in asynchronous download capabilities (url-retrieve). If set to extern the external program wget is used, see newsticker-wget-name.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defcustom newsticker-retrieval-method
  'intern
  "Method for retrieving news from the web, either `intern' or `extern'.
Default value `intern' uses Emacs' built-in asynchronous download
capabilities (`url-retrieve').  If set to `extern' the external
program wget is used, see `newsticker-wget-name'."
  :type '(choice :tag "Method"
                 (const :tag "Intern" intern)
                 (const :tag "Extern" extern))
  :group 'newsticker-retrieval)