Function: hexl-forward-char

hexl-forward-char is an interactive and byte-compiled function defined in hexl.el.gz.

Signature

(hexl-forward-char ARG)

Documentation

Move to right ARG bytes (left if ARG negative) in Hexl mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-forward-char (arg)
  "Move to right ARG bytes (left if ARG negative) in Hexl mode."
  (interactive "p")
  (hexl-goto-address (+ (hexl-current-address) arg)))