This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Quote and indent %B::Concise::priv initialisation consistently
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Sun, 23 Jun 2013 16:09:18 +0000 (17:09 +0100)
committerJames E Keenan <jkeenan@cpan.org>
Mon, 24 Jun 2013 01:36:32 +0000 (03:36 +0200)
commit8c1a7e3503b5ab7597ff8f07641ff0768e4e93a9
tree3ffd5f4560161f19f1c881f6ac03f5e819211e6a
parentf3ece40787fb16d398d0f1e3b38e1e19d459f14e
Quote and indent %B::Concise::priv initialisation consistently

- use qw() for all word lists
- use double quotes for single strings (only) where necessary
- hanging indent after opening operator/paren

No difference in the resulting data structure, as verified with:

  ./perl -Ilib -MData::Dumper -MB::Concise -e 'package Data::Dumper {
    $Sortkeys = $Terse = $Useqq = $Deepcopy = 1; $Quotekeys = 0 }
    print Dumper(\%B::Concise::priv)'

Bump B::Concise $VERSION.

For: RT #118609.
ext/B/B/Concise.pm