aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-20 22:21:12 +0000
committerJim Blandy1993-03-20 22:21:12 +0000
commit97741d057d1fcbc5c9a2d2462657ced33d0c8826 (patch)
tree452e3c4ab631b23b24466818e73070a6fd018c69 /src
parent426b37aecf593645d44344ca7feace662ea3360d (diff)
downloademacs-97741d057d1fcbc5c9a2d2462657ced33d0c8826.tar.gz
emacs-97741d057d1fcbc5c9a2d2462657ced33d0c8826.zip
* sysdep.c (reset_sys_modes): Fix usage of EMACS_SET_TTY.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 901edb85e67..e111c9c35ad 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1102,7 +1102,7 @@ reset_sys_modes ()
1102 reset_sigio (); 1102 reset_sigio ();
1103#endif /* BSD4_1 */ 1103#endif /* BSD4_1 */
1104 1104
1105 while (EMACS_SET_TTY (input_fd, &old_tty, 0) < 0 && errno == EINTR) 1105 while (! EMACS_SET_TTY (input_fd, &old_tty, 0) && errno == EINTR)
1106 ; 1106 ;
1107 1107
1108#ifdef AIX 1108#ifdef AIX