From 384b438bc38f51db5b3cf87c813774727324ab0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Harald=20J=C3=B6rg?= Date: Mon, 10 Mar 2025 11:40:10 +0100 Subject: [PATCH] ; cperl-mode.el: Improve docstring cperl-fontify-trailer * lisp/progmodes/cperl-mode.el (cperl-fontify-trailer): Document that this setting also affects indentation (Bug#76868). (cherry picked from commit 442d16266ee1c83ab56809acb414ac7b41c56f42) --- lisp/progmodes/cperl-mode.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index d7adbff325c..94ff69dabac 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -575,12 +575,12 @@ This way enabling/disabling of menu items is more correct." (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." + "How to treat text after an \"__END__\" or \"__DATA__\" token. +If \"perl-code\", treat as Perl code for fontification, examine for +imenu entries, and indent according to Perl syntax. Use this setting if +you have trailing POD documentation, or for modules which use AutoLoad +or AutoSplit. If \"comment\", treat as comment, do not look for imenu +entries, and do not change indentation." :type '(choice (const perl-code) (const comment)) :version "30.1" -- 2.39.5