Variable: cperl-fontify-trailer

cperl-fontify-trailer is a customizable variable defined in cperl-mode.el.gz.

Value

perl-code

Documentation

How to fontify text after an "__END__" or "__DATA__" token.

If "perl-code", treat as Perl code for fontification, and examine for imenu entries. Use this setting if you have trailing POD documentation, or for modules which use AutoLoad or AutoSplit. If "comment", treat as comment, and do not look for imenu entries.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-fontify-trailer
  'perl-code
  "How to fontify text after an \"__END__\" or \"__DATA__\" token.
If \"perl-code\", treat as Perl code for fontification, and
examine for imenu entries.  Use this setting if you have trailing
POD documentation, or for modules which use AutoLoad or
AutoSplit.  If \"comment\", treat as comment, and do not look for
imenu entries."
  :type '(choice (const perl-code)
		 (const comment))
  :version "30.1"
  :group 'cperl-faces)