Variable: cperl--pod-heading-rx

cperl--pod-heading-rx is a variable defined in cperl-mode.el.gz.

Value

(sequence line-start (group-n 1 "=head") (group-n 3 (in "1-4"))
	  (1+ (in "     ")) (group-n 2 (1+ (not (in "\n")))))

Documentation

A regular expression to detect a POD heading.

Contains two groups: One for the heading level, and one for the heading text.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defconst cperl--pod-heading-rx
  `(sequence line-start
             (group-n 1 "=head")
             (group-n 3 (in "1-4"))
             (1+ (in " \t"))
             (group-n 2 (1+ (not (in "\n")))))
  "A regular expression to detect a POD heading.
Contains two groups: One for the heading level, and one for the
heading text.")