http://www.perlmonks.org?node_id=1061428

isntvoid has asked for the wisdom of the Perl Monks concerning the following question:

I can't format my code properly with CPerl GNU Emacs major mode.

I've got

sub _get_options { Getopt::Long::Configure('gnu_getopt'); return Getopt::Long::GetOptions(\%Options, qw( version|V debug ) ); }
instead of desirable
sub _get_options { Getopt::Long::Configure('gnu_getopt'); return Getopt::Long::GetOptions(\%Options, qw( version|V debug ) ); }

Playing with cperl-* variables didn't give any positive effect.

Seek for your wisdom, monks!