Function: meta-mark-defun

meta-mark-defun is an interactive and byte-compiled function defined in meta-mode.el.gz.

Signature

(meta-mark-defun)

Documentation

Put mark at end of the environment, point at the beginning.

The environment marked is the one that contains point or follows point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-mark-defun ()
  "Put mark at end of the environment, point at the beginning.
The environment marked is the one that contains point or follows point."
  (interactive)
  (push-mark)
  (meta-end-of-defun)
  (push-mark (point) nil t)
  (meta-beginning-of-defun))