aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorJason Rumney2007-09-25 08:53:23 +0000
committerJason Rumney2007-09-25 08:53:23 +0000
commit635e3b291d7ce030af1f7eb3b18dc14d005c1eda (patch)
tree9fecb0359a5986d55455e77b7fae4a626badea84 /src/term.c
parent69fb5031b30e084f78b58655c352504ff0fd723c (diff)
downloademacs-635e3b291d7ce030af1f7eb3b18dc14d005c1eda.tar.gz
emacs-635e3b291d7ce030af1f7eb3b18dc14d005c1eda.zip
(init_tty): Call init_sys_modes on WINDOWSNT also.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index b18722f816f..ce3b49ef4c1 100644
--- a/src/term.c
+++ b/src/term.c
@@ -3717,9 +3717,10 @@ to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
3717 /* Don't do this. I think termcap may still need the buffer. */ 3717 /* Don't do this. I think termcap may still need the buffer. */
3718 /* xfree (buffer); */ 3718 /* xfree (buffer); */
3719 3719
3720#endif /* not WINDOWSNT */
3721
3720 /* Init system terminal modes (RAW or CBREAK, etc.). */ 3722 /* Init system terminal modes (RAW or CBREAK, etc.). */
3721 init_sys_modes (tty); 3723 init_sys_modes (tty);
3722#endif /* not WINDOWSNT */
3723 3724
3724 return terminal; 3725 return terminal;
3725} 3726}