Function: bibtex-previous-entry

bibtex-previous-entry is an interactive and byte-compiled function defined in bibtex.el.gz.

Signature

(bibtex-previous-entry &optional ARG)

Documentation

Move point ARG entries backward.

ARG defaults to one. Called interactively, ARG is the prefix argument.

Probably introduced at or before Emacs version 27.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-previous-entry (&optional arg)
  "Move point ARG entries backward.
ARG defaults to one.  Called interactively, ARG is the prefix
argument."
  (interactive "p")
  (bibtex-beginning-of-entry)
  (when (re-search-backward bibtex-entry-maybe-empty-head nil t (or arg 1))
    (goto-char (match-beginning 0))))