Use a blank line after all diff summaries

pull/647/head^2
Wilfred Hughes 2024-03-07 08:18:14 +07:00
parent c6da85759c
commit 34fa3d6eff
2 changed files with 8 additions and 3 deletions

@ -10,6 +10,11 @@ that files are binaries.
Scheme now uses the same slider heuristics as other lisps, preferring
the outer delimiter.
### Display
Fixed an issue when reporting changes in binary files, where trailing
whitespace was inconsistent with other changes shown.
## 0.56.1 (released 5th March 2024)
### Build

@ -856,9 +856,9 @@ fn print_diff_result(display_options: &DisplayOptions, summary: &DiffResult) {
)
);
if summary.has_byte_changes {
println!("Binary contents changed.");
println!("Binary contents changed.\n");
} else {
println!("No changes.");
println!("No changes.\n");
}
}
}
@ -876,7 +876,7 @@ fn print_diff_result(display_options: &DisplayOptions, summary: &DiffResult) {
display_options
)
);
println!("Binary contents changed.");
println!("Binary contents changed.\n");
}
}
}