warning: in the working copy of 'adapters/mock/src/console_mode_probe.rs', LF will be replaced by CRLF the next time Git touches it diff --git a/adapters/mock/src/console_mode_probe.rs b/adapters/mock/src/console_mode_probe.rs index 0dd059e..e2ee551 100644 --- a/adapters/mock/src/console_mode_probe.rs +++ b/adapters/mock/src/console_mode_probe.rs @@ -124,7 +124,10 @@ fn go_raw() { use windows_sys::Win32::System::Console::{ ENABLE_ECHO_INPUT, ENABLE_LINE_INPUT, ENABLE_PROCESSED_INPUT, }; - set_input_bits(ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT, false); + set_input_bits( + ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT, + false, + ); } /// SEED the defect: turn cooked input back on, so a rig asserting it stays off