Function: cperl-select-this-pod-or-here-doc

cperl-select-this-pod-or-here-doc is an interactive and byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-select-this-pod-or-here-doc &optional POS)

Documentation

Select the HERE-DOC (or POD section) at POS.

POS defaults to the point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-select-this-pod-or-here-doc (&optional pos)
  "Select the HERE-DOC (or POD section) at POS.
POS defaults to the point."
  (interactive "d")
  (let ((p (cperl-get-here-doc-region pos t)))
    (if p
	(progn
	  (goto-char (car p))
	  (push-mark (cdr p) nil t))	; Message, activate in transient-mode
      (message "I do not think POS is in POD or a HERE-doc..."))))