--space-keyword-paren
--weld-nested-containers
+==> b1240.in <==
+# S1
+ printf(
+"Inode Last Change at: %s\n",
+ scalar
+ localtime($ctime) );
+# S2
+ printf(
+"Inode Last Change at: %s\n",
+ scalar localtime(
+ $ctime)
+ );
+
+==> b1240.par <==
+--continuation-indentation=3
+--extended-continuation-indentation
+--indent-columns=5
+--line-up-parentheses
+--maximum-line-length=34
+
==> b1241.in <==
# created from b901
# Started blinking with new -lp logic
# Do not break hash braces under stress (fixes b1238)
$do_not_break_apart ||= $types_to_go[$i_opening] eq 'L';
+
+ # This option fixes b1235, b1237, b1240 with old and new -lp,
+ # but formatting is nicer with next option.
+ ## $is_long_term ||=
+ ## $levels_to_go[$i_opening] > $stress_level + 1;
+
+ # This option fixes b1240 but not b1235, b1237 with new -lp,
+ # but this gives better formatting than the previous option.
+ $do_not_break_apart ||=
+ $levels_to_go[$i_opening] > $stress_level;
}
if ( !$is_long_term