Function: hexl-goto-hex-address

hexl-goto-hex-address is an interactive and byte-compiled function defined in hexl.el.gz.

Signature

(hexl-goto-hex-address HEX-ADDRESS)

Documentation

Go to Hexl mode address (hex string) HEX-ADDRESS.

Signal error if HEX-ADDRESS is out of range.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-goto-hex-address (hex-address)
  "Go to Hexl mode address (hex string) HEX-ADDRESS.
Signal error if HEX-ADDRESS is out of range."
  (interactive "sHex Address: ")
  (hexl-goto-address (hexl-hex-string-to-integer hex-address)))