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