Function: nroff-backward-text-line

nroff-backward-text-line is an interactive and byte-compiled function defined in nroff-mode.el.gz.

Signature

(nroff-backward-text-line &optional CNT)

Documentation

Go backward one nroff text line, skipping lines of nroff requests.

An argument is a repeat count; negative means move forward.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/nroff-mode.el.gz
(defun nroff-backward-text-line (&optional cnt)
  "Go backward one nroff text line, skipping lines of nroff requests.
An argument is a repeat count; negative means move forward."
  (interactive "p")
  (nroff-forward-text-line (- cnt)))