Fix backspace

There's never a count associated with this, and it has been removed from
the Handler method to reflect as much.
This commit is contained in:
Joe Wilm 2016-06-09 08:37:59 -07:00
parent 8566e17860
commit 2395066318
No known key found for this signature in database
GPG Key ID: 39B57C6972F518DA
2 changed files with 4 additions and 6 deletions

View File

@ -251,7 +251,7 @@ pub trait Handler {
fn put_tab(&mut self, _count: i64) {}
/// Backspace `count` characters
fn backspace(&mut self, _count: i64) {}
fn backspace(&mut self) {}
/// Carriage return
fn carriage_return(&mut self) {}
@ -355,7 +355,7 @@ impl Handler for DebugHandler {
fn move_down_and_cr(&mut self, rows: i64) { println!("move_down_and_cr: {}", rows); }
fn move_up_and_cr(&mut self, rows: i64) { println!("move_up_and_cr: {}", rows); }
fn put_tab(&mut self, count: i64) { println!("put_tab: {}", count); }
fn backspace(&mut self, count: i64) { println!("backspace: {}", count); }
fn backspace(&mut self) { println!("backspace"); }
fn carriage_return(&mut self) { println!("carriage_return"); }
fn linefeed(&mut self) { println!("linefeed"); }
fn bell(&mut self) { println!("bell"); }
@ -754,7 +754,7 @@ impl Parser {
{
match c {
C0::HT => handler.put_tab(1),
C0::BS => handler.backspace(1),
C0::BS => handler.backspace(),
C0::CR => handler.carriage_return(),
C0::LF |
C0::VT |

View File

@ -281,11 +281,9 @@ impl ansi::Handler for Term {
/// Backspace `count` characters
#[inline]
fn backspace(&mut self, count: i64) {
fn backspace(&mut self) {
println!("backspace");
// TODO this is incorrect; count unused
self.cursor.x -= 1;
self.set_char(' ');
}
/// Carriage return