Function: newsticker--display-tick

newsticker--display-tick is a byte-compiled function defined in newst-ticker.el.gz.

Signature

(newsticker--display-tick)

Documentation

Called from the display timer.

This function calls a display function, according to the variable newsticker-scroll-smoothly.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-ticker.el.gz
(defun newsticker--display-tick ()
  "Called from the display timer.
This function calls a display function, according to the variable
`newsticker-scroll-smoothly'."
  (when (not newsticker--ticker-timer)
      (if newsticker-scroll-smoothly
       (setq newsticker--ticker-timer
             (run-at-time 1
                          newsticker-ticker-interval
                          #'newsticker--display-scroll))
     (setq newsticker--ticker-timer
           (run-at-time nil
                        newsticker-ticker-interval
                        #'newsticker--display-jump)))))