Function: hexl-beginning-of-buffer

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

Signature

(hexl-beginning-of-buffer ARG)

Documentation

Move to the beginning of the hexl buffer.

Leaves hexl-mark at previous position. With prefix arg N, puts point N bytes of the way from the true beginning.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-beginning-of-buffer (arg)
  "Move to the beginning of the hexl buffer.
Leaves `hexl-mark' at previous position.
With prefix arg N, puts point N bytes of the way from the true beginning."
  (interactive "p")
  (push-mark)
  (hexl-goto-address (+ 0 (1- arg))))