Function: hexl-previous-line

hexl-previous-line is an interactive and byte-compiled function defined in hexl.el.gz.

Signature

(hexl-previous-line ARG)

Documentation

Move vertically up ARG lines [16 bytes] (down if ARG negative) in Hexl mode.

If there is no byte at the target address move to the last byte in that line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-previous-line (arg)
  "Move vertically up ARG lines [16 bytes] (down if ARG negative) in Hexl mode.
If there is no byte at the target address move to the last byte in that line."
  (interactive "p")
  (hexl-next-line (- arg)))