1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 03:39:16 +03:00

fix missing paren for the bell print

This commit is contained in:
Wez Furlong 2018-08-05 17:22:46 -07:00
parent d3d11d629f
commit dfa3ef5ae6

View File

@ -1602,7 +1602,7 @@ impl<'a> Performer<'a> {
self.set_cursor_pos(&Position::Relative(-1), &Position::Relative(0));
}
ControlCode::HorizontalTab => self.c0_horizontal_tab(),
ControlCode::Bell => eprintln!("Ding! (this is the bell"),
ControlCode::Bell => eprintln!("Ding! (this is the bell)"),
_ => println!("unhandled ControlCode {:?}", control),
}
}