Function: idlwave-mark-subprogram

idlwave-mark-subprogram is an interactive and byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-mark-subprogram)

Documentation

Put mark at beginning of program, point at end.

The marks are pushed.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-mark-subprogram ()
  "Put mark at beginning of program, point at end.
The marks are pushed."
  (interactive)
  (idlwave-end-of-statement)
  (idlwave-beginning-of-subprogram)
  (let ((beg (point)))
    (idlwave-forward-block)
    (push-mark beg nil t))
  (exchange-point-and-mark))