1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00

term: don't warn when we receive ControlCode::Null

refs: #1844
This commit is contained in:
Wez Furlong 2022-04-09 06:36:01 -07:00
parent 0f6ee20b28
commit 394c62d56c

View File

@ -391,6 +391,8 @@ impl<'a> Performer<'a> {
}
}
ControlCode::Null => {},
_ => log::warn!("unhandled ControlCode {:?}", control),
}
}