Function: mark-end-of-buffer

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

Signature

(mark-end-of-buffer)

Documentation

Set mark at the end of the buffer.

Probably introduced at or before Emacs version 17.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/misc.el.gz
;;;###autoload
(defun mark-end-of-buffer ()
  "Set mark at the end of the buffer."
  (interactive)
  (push-mark (point-max)))