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