Function: etc-authors-prev-author
etc-authors-prev-author is an interactive and byte-compiled function
defined in etc-authors-mode.el.gz.
Signature
(etc-authors-prev-author &optional ARG)
Documentation
Move point to the previous author in "etc/AUTHORS".
With a prefix arg ARG, move point that many authors backward.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/etc-authors-mode.el.gz
(defun etc-authors-prev-author (&optional arg)
"Move point to the previous author in \"etc/AUTHORS\".
With a prefix arg ARG, move point that many authors backward."
(interactive "p" etc-authors-mode)
(etc-authors-next-author (- arg)))