diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-09-12 00:10:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 00:10:43 +0200 |
commit | bdeb4bddbf5cabd04abe906388f5ebfe64a84c53 (patch) | |
tree | fd6aed583eac5108c4403ae424bc4246781bed0c /runtime/ops/tty.rs | |
parent | aaff69db3fd8cf70d1c031720e84874cb4a4d02c (diff) |
refactor: rewrite runtime/ ops to op2 (#20459)
Diffstat (limited to 'runtime/ops/tty.rs')
-rw-r--r-- | runtime/ops/tty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/tty.rs b/runtime/ops/tty.rs index 1d4c123a2..07a7a0b73 100644 --- a/runtime/ops/tty.rs +++ b/runtime/ops/tty.rs @@ -73,7 +73,7 @@ fn mode_raw_input_off(original_mode: DWORD) -> DWORD { original_mode & !wincon::ENABLE_VIRTUAL_TERMINAL_INPUT | COOKED_MODE } -#[op(fast)] +#[op2(fast)] fn op_stdin_set_raw( state: &mut OpState, is_raw: bool, |