From: Geoff Voelker Date: Tue, 7 Nov 1995 07:26:18 +0000 (+0000) Subject: [HAVE_NTGUI] (init_sys_modes, reset_sys_modes): X-Git-Tag: emacs-19.34~2444 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23cafe430d818571913474dff999b7cbe5327c3c;p=emacs.git [HAVE_NTGUI] (init_sys_modes, reset_sys_modes): Don't initialize terminal mode when using window system. [HAVE_NTGUI] (BUFFER_SIZE_FACTOR): Increase for use with window system. Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems. --- diff --git a/src/sysdep.c b/src/sysdep.c index dc47a4a2a0f..96fc515b76c 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1226,7 +1226,7 @@ init_sys_modes () narrow_foreground_group (); #endif -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM /* Emacs' window system on MSDOG uses the `internal terminal' and therefore needs the initialization code below. */ if (!read_socket_hook && EQ (Vwindow_system, Qnil)) @@ -1469,7 +1469,7 @@ init_sys_modes () #else setbuf (stdout, _sobuf); #endif -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM /* Emacs' window system on MSDOG uses the `internal terminal' and therefore needs the initialization code below. */ if (! read_socket_hook && EQ (Vwindow_system, Qnil)) @@ -1612,7 +1612,7 @@ reset_sys_modes () } if (!term_initted) return; -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM /* Emacs' window system on MSDOG uses the `internal terminal' and therefore needs the clean-up code below. */ if (read_socket_hook || !EQ (Vwindow_system, Qnil)) @@ -2403,8 +2403,8 @@ sys_select (nfds, rfds, wfds, efds, timeout) /* Read keyboard input into the standard buffer, waiting for at least one character. */ -/* Make all keyboard buffers much bigger when using X windows. */ -#ifdef HAVE_X_WINDOWS +/* Make all keyboard buffers much bigger when using a window system. */ +#ifdef HAVE_WINDOW_SYSTEM #define BUFFER_SIZE_FACTOR 16 #else #define BUFFER_SIZE_FACTOR 1