Function: hexl-end-of-buffer

hexl-end-of-buffer is an interactive and byte-compiled function defined in hexl.el.gz.

Signature

(hexl-end-of-buffer ARG)

Documentation

Go to hexl-max-address minus ARG.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-end-of-buffer (arg)
  "Go to `hexl-max-address' minus ARG."
  (interactive "p")
  (push-mark)
  (hexl-goto-address (- hexl-max-address (1- arg))))