--paren-vertical-tightness=1
--weld-nested-containers
+==> b1234.in <==
+# S1
+is(
+ Pack->
+ $mname(
+ "a", "b",
+ "c"
+ ),
+"method,a,b,c"
+);
+
+# S2
+is(
+ Pack->$mname
+ (
+ "a", "b",
+ "c"
+ ),
+"method,a,b,c"
+);
+
+==> b1234.par <==
+--continuation-indentation=10
+--ignore-old-breakpoints
+--maximum-line-length=12
+--variable-maximum-line-length
+
==> b1236.in <==
# Added level test when applying kpit
# S1
if ($saw_type) {
if ($saw_alpha) {
- if ( $identifier =~ /^->/ && $last_nonblank_type eq 'w' ) {
+
+ # The type without the -> should be the same as with the -> so
+ # that if they get separated we get the same bond strengths,
+ # etc. See b1234
+ if ( $identifier =~ /^->/
+ && $last_nonblank_type eq 'w'
+ && substr( $identifier, 2, 1 ) =~ /^\w/ )
+ {
$type = 'w';
}
else { $type = 'i' }