Function: newsticker--buffer-end-of-feed

newsticker--buffer-end-of-feed is a byte-compiled function defined in newst-plainview.el.gz.

Signature

(newsticker--buffer-end-of-feed)

Documentation

Move point to the end of the last item of the feed at point.

Take care: end of item is at the end of its last line!

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker--buffer-end-of-feed ()
  "Move point to the end of the last item of the feed at point.
Take care: end of item is at the end of its last line!"
  (when (newsticker--buffer-goto '(feed nil))
    (backward-char 1)
    (point)))