Function: mark-beginning-of-buffer

mark-beginning-of-buffer is an autoloaded, interactive and byte-compiled function defined in misc.el.gz.

Signature

(mark-beginning-of-buffer)

Documentation

Set mark at the beginning of the buffer.

Probably introduced at or before Emacs version 17.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/misc.el.gz
;; These were added with an eye to making possible a more CCA-compatible
;; command set; but that turned out not to be interesting.

;;;###autoload
(defun mark-beginning-of-buffer ()
  "Set mark at the beginning of the buffer."
  (interactive)
  (push-mark (point-min)))