diff options
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c index 93e5647..92c069d 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -2106,13 +2106,13 @@ static void rawmode(void) term_vi.c_cc[VMIN] = 1; term_vi.c_cc[VTIME] = 0; erase_char = term_vi.c_cc[VERASE]; - tcsetattr(0, TCSANOW, &term_vi); + tcsetattr_stdin_TCSANOW(&term_vi); } static void cookmode(void) { fflush(stdout); - tcsetattr(0, TCSANOW, &term_orig); + tcsetattr_stdin_TCSANOW(&term_orig); } //----- Come here when we get a window resize signal --------- |