mirror of
https://github.com/alacritty/alacritty.git
synced 2025-02-17 15:57:08 -05:00
Fix debug printing in ansi
It was always printing intead of only debug builds.
This commit is contained in:
parent
6d4e10e2b9
commit
3826fa68a0
1 changed files with 2 additions and 2 deletions
|
@ -449,8 +449,8 @@ impl Parser {
|
|||
'=' => sequence_complete!(set_keypad_application_mode),
|
||||
'>' => sequence_complete!(unset_keypad_application_mode),
|
||||
'P' | '_' | '^' | ']' | 'k' | '(' => {
|
||||
println!("Entering EscapeOther");
|
||||
print!("{:?}", c);
|
||||
debug_println!("Entering EscapeOther");
|
||||
debug_print!("{:?}", c);
|
||||
self.state = State::EscapeOther;
|
||||
},
|
||||
_ => {
|
||||
|
|
Loading…
Add table
Reference in a new issue