## 2019 06 01.01
+ - some improved vertical alignments
+
+## 2019 06 01
+
- rt #128477: Prevent inconsistent owner/group and setuid/setgid bits.
In the -b (--backup-and-modify-in-place) mode, an attempt is made to set ownership
of the output file equal to the input file, if they differ.
# always a good idea to make as many one-line blocks as possible,
# so other types are not done. The user can always use -mangle.
if ( $is_sort_map_grep_eval{$block_type} ) {
- create_one_line_block( $i_start, 1 );
+
+ # Patch for issue git#9: do not try to form new one line blocks for a
+ # cuddled block type. For example, for flags -ce and -cbl='map,sort,grep'
+ if ( !$rcuddled_block_types->{'*'}->{$block_type} ) {
+ create_one_line_block( $i_start, 1 );
+ }
}
return 0;
}