Skip to content

Commit

Permalink
Fixed a small off-by-one error that resulted in inconsistent tab sizes.
Browse files Browse the repository at this point in the history
  • Loading branch information
eth-p committed Sep 11, 2018
1 parent b4096e5 commit baa1da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ impl<'a> Printer for InteractivePrinter<'a> {
.iter()
.map(|&(style, text)| as_terminal_escaped(
style,
&*self.preprocess(text, 0),
&*self.preprocess(text, 1),
true_color,
colored_output,
)).collect::<Vec<_>>()
Expand Down

0 comments on commit baa1da0

Please sign in to comment.