Function: bibtex-pop-previous

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

Signature

(bibtex-pop-previous ARG)

Documentation

Replace text of current field with the similar field in previous entry.

With arg, goes up ARG entries. Repeated, goes up so many times. May be intermixed with M-x bibtex-pop-next (bibtex-pop-next) (bibtex-pop-next).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-pop-previous (arg)
  "Replace text of current field with the similar field in previous entry.
With arg, goes up ARG entries.  Repeated, goes up so many times.  May be
intermixed with \\[bibtex-pop-next] (bibtex-pop-next)."
  (interactive "p")
  (bibtex-pop arg 'previous))