Variable: cperl-maybe-white-and-comment-rex
cperl-maybe-white-and-comment-rex is a variable defined in
cperl-mode.el.gz.
Value
"\\(\\(?:[\n[:space:]]\\|#.*\n\\)*\\)"
Documentation
Regular expression to match optional whitespace with interspersed comments.
Should contain exactly one group.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
;; These two must be unwound, otherwise take exponential time
(defconst cperl-maybe-white-and-comment-rex
(rx (group (eval cperl--ws*-rx)))
;; was: "[ \t\n]*\\(#[^\n]*\n[ \t\n]*\\)*"
"Regular expression to match optional whitespace with interspersed comments.
Should contain exactly one group.")