1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00
This commit is contained in:
Joe Wilm 2017-10-22 08:41:11 -07:00
parent a1174797b4
commit bfdd7b0062

View file

@ -467,7 +467,7 @@ impl<'a> de::Deserialize<'a> for ModeWrapper {
"~AppCursor" => res.not_mode |= mode::APP_CURSOR,
"AppKeypad" => res.mode |= mode::APP_KEYPAD,
"~AppKeypad" => res.not_mode |= mode::APP_KEYPAD,
_ => eprintln!("unknown omde {:?}", modifier),
_ => eprintln!("unknown mode {:?}", modifier),
}
}