Function: etc-authors-next-author
etc-authors-next-author is an interactive and byte-compiled function
defined in etc-authors-mode.el.gz.
Signature
(etc-authors-next-author &optional ARG)
Documentation
Move point to the next author in "etc/AUTHORS".
With a prefix arg ARG, move point that many authors forward.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/etc-authors-mode.el.gz
(defun etc-authors-next-author (&optional arg)
"Move point to the next author in \"etc/AUTHORS\".
With a prefix arg ARG, move point that many authors forward."
(interactive "p" etc-authors-mode)
(if (< 0 arg)
(progn
(when (looking-at etc-authors--author-re)
(forward-line 1))
(re-search-forward etc-authors--author-re nil t arg))
(when (looking-at etc-authors--author-re)
(forward-line -1))
(re-search-backward etc-authors--author-re nil t (abs arg)))
(goto-char (line-beginning-position)))