Function: forms-prev-record

forms-prev-record is an interactive and byte-compiled function defined in forms.el.gz.

Signature

(forms-prev-record ARG)

Documentation

Advance to the ARGth previous record.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/forms.el.gz
(defun forms-prev-record (arg)
  "Advance to the ARGth previous record."
  (interactive "P")
  (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))