diff options
author | Alexander Bulimov <lazywolf0@gmail.com> | 2019-01-21 21:59:10 +0000 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-01-21 21:59:10 +0000 |
commit | c3bac1c453a7ae7c08ee3e8b4d9c2327464d148f (patch) | |
tree | bf56bec26c9358ea6bb890740015f86747d7c1e8 /src/term/mod.rs | |
parent | d62fe71b6071a9cc1b520c0e87c96111a719327a (diff) | |
download | alacritty-c3bac1c453a7ae7c08ee3e8b4d9c2327464d148f.tar.gz alacritty-c3bac1c453a7ae7c08ee3e8b4d9c2327464d148f.zip |
Fix off-by-one error in erase_chars
Diffstat (limited to 'src/term/mod.rs')
-rw-r--r-- | src/term/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term/mod.rs b/src/term/mod.rs index c435d501..487ba20d 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -1702,7 +1702,7 @@ impl ansi::Handler for Term { fn erase_chars(&mut self, count: Column) { trace!("Erasing chars: count={}, col={}", count, self.cursor.point.col); let start = self.cursor.point.col; - let end = min(start + count, self.grid.num_cols() - 1); + let end = min(start + count, self.grid.num_cols()); let row = &mut self.grid[self.cursor.point.line]; let template = self.cursor.template; // Cleared cells have current background color set |