Function: hexl-goto-address

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

Signature

(hexl-goto-address ADDRESS)

Documentation

Go to hexl-mode (decimal) address ADDRESS.

Signal error if ADDRESS is out of range.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
       (+ N (/ N (/ hexl-bits 4))) )) ) ; char offset into hexl display line

(defun hexl-goto-address (address)
  "Go to `hexl-mode' (decimal) address ADDRESS.
Signal error if ADDRESS is out of range."
  (interactive "nAddress: ")
  (if (or (< address 0) (> address hexl-max-address))
      (error "Out of hexl region"))
  (goto-char (hexl-address-to-marker address)))