Function: pascal-mark-defun

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

Signature

(pascal-mark-defun)

Documentation

Mark the current Pascal function (or procedure).

This puts the mark at the end, and point at the beginning.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/pascal.el.gz
(defun pascal-mark-defun ()
  "Mark the current Pascal function (or procedure).
This puts the mark at the end, and point at the beginning."
  (interactive)
  (push-mark)
  (pascal-end-of-defun)
  (push-mark)
  (pascal-beg-of-defun))