Function: rcirc-jump-to-first-unread-line

rcirc-jump-to-first-unread-line is an interactive and byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-jump-to-first-unread-line)

Documentation

Move the point to the first unread line in this buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-jump-to-first-unread-line ()
  "Move the point to the first unread line in this buffer."
  (interactive)
  (if (marker-position overlay-arrow-position)
      (goto-char overlay-arrow-position)
    (message "No unread messages")))