From: Steve Hancock Date: Tue, 9 Jun 2020 20:25:20 +0000 (-0700) Subject: added xor to builtin -sak keywords; should have been X-Git-Tag: 20200619~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2a19dfa8082dca1119f449f6f2f8b3b55d8ff0ec;p=perltidy.git added xor to builtin -sak keywords; should have been --- diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index e723bc93..dedf72f8 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -5919,7 +5919,7 @@ EOM # default keywords for which space is introduced before an opening paren # (at present, including them messes up vertical alignment) - my @sak = qw(my local our and or err eq ne if else elsif until + my @sak = qw(my local our and or xor err eq ne if else elsif until unless while for foreach return switch case given when catch); %space_after_keyword = map { $_ => 1 } @sak;