Function: hexl-backward-char
hexl-backward-char is an interactive and byte-compiled function
defined in hexl.el.gz.
Signature
(hexl-backward-char ARG)
Documentation
Move to left ARG bytes (right if ARG negative) in Hexl mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/hexl.el.gz
;; move point functions
(defun hexl-backward-char (arg)
"Move to left ARG bytes (right if ARG negative) in Hexl mode."
(interactive "p")
(hexl-goto-address (- (hexl-current-address) arg)))