Function: emacs-authors-prev-author
emacs-authors-prev-author is an interactive and byte-compiled function
defined in emacs-authors-mode.el.gz.
Signature
(emacs-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
Aliases
etc-authors-prev-author (obsolete since 29.1)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/emacs-authors-mode.el.gz
(defun emacs-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" emacs-authors-mode)
(emacs-authors-next-author (- arg)))