1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2025-09-11 22:54:04 -04:00

Add unhandled execute log

This commit is contained in:
Joe Wilm 2016-09-23 09:24:26 -07:00
parent 09b1843815
commit cbeec3df5a

View file

@ -408,7 +408,7 @@ impl<'a, H: Handler + TermInfo + 'a> vte::Perform for Performer<'a, H> {
C1::NEL => self.handler.newline(), C1::NEL => self.handler.newline(),
C1::HTS => self.handler.set_horizontal_tabstop(), C1::HTS => self.handler.set_horizontal_tabstop(),
C1::DECID => self.handler.identify_terminal(), C1::DECID => self.handler.identify_terminal(),
_ => (), _ => err_println!("[unhandled] execute byte={:02x}", byte)
} }
} }