--short-concatenation-item-length=1
--want-trailing-commas='h'
+==> b1457.in <==
+BEGIN {
+ %messages=(
+ 0x95 => [
+ StartSessionTransmission =>
+ qw( *_RemoteIPAddr V_SessionType )
+ ],
+ 0x93 => [
+ ConfigStat =>qw( Z16_DeviceName V_StationUserID
+ V_StationUserInstance
+ Z16_UserName Z16_ServerName
+ V_NumberLines V_NumberSpeedDials )
+ ],
+ ) ;
+}
+
+BEGIN {
+ %messages=(
+ 0x95 => [
+ StartSessionTransmission =>
+ qw( *_RemoteIPAddr V_SessionType )
+ ],
+ 0x93 => [
+ ConfigStat =>
+ qw( Z16_DeviceName V_StationUserID
+ V_StationUserInstance
+ Z16_UserName Z16_ServerName
+ V_NumberLines V_NumberSpeedDials )
+ ],
+ ) ;
+}
+
+
+==> b1457.par <==
+--maximum-line-length=76
+--indent-columns=9
+--continuation-indentation=9
+--noadd-whitespace
+--extended-continuation-indentation
+--extended-line-up-parentheses
+
==> b146.in <==
# State 1
" " . $user->{lastname}, selected => '0',
};
+==> b1457 <==
+BEGIN {
+ %messages=(
+ 0x95 => [
+ StartSessionTransmission =>
+ qw( *_RemoteIPAddr V_SessionType )
+ ],
+ 0x93 => [
+ ConfigStat =>qw( Z16_DeviceName V_StationUserID
+ V_StationUserInstance
+ Z16_UserName Z16_ServerName
+ V_NumberLines V_NumberSpeedDials )
+ ],
+ ) ;
+}
+
+BEGIN {
+ %messages=(
+ 0x95 => [
+ StartSessionTransmission =>
+ qw( *_RemoteIPAddr V_SessionType )
+ ],
+ 0x93 => [
+ ConfigStat =>qw( Z16_DeviceName V_StationUserID
+ V_StationUserInstance
+ Z16_UserName Z16_ServerName
+ V_NumberLines V_NumberSpeedDials )
+ ],
+ ) ;
+}
+
+
==> b146 <==
# State 1
# Count lengths of things like 'xx => yy' as a single item
if ( $type eq '=>' ) {
$len += $token_length + 1;
+
+ # fix $len for -naws, issue b1457
+ if ( !$rOpts_add_whitespace ) {
+ if ( defined( $rLL->[ $KK + 1 ] )
+ && $rLL->[ $KK + 1 ]->[_TYPE_] ne 'b' )
+ {
+ $len -= 1;
+ }
+ }
+
if ( $len > $max_prong_len ) { $max_prong_len = $len }
}
elsif ( $last_nonblank_type eq '=>' ) {