]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_sys_modes): Enable VSTART and VSTOP if flow_control.
authorRichard M. Stallman <rms@gnu.org>
Fri, 13 Jun 1997 00:49:50 +0000 (00:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 13 Jun 1997 00:49:50 +0000 (00:49 +0000)
src/sysdep.c

index b6d87714820b1b1c3011191a3150b2a43664e8d4..5197317b5f9f77fecdf29278b6dabb97c4b4d991 100644 (file)
@@ -1375,6 +1375,15 @@ init_sys_modes ()
       tty.main.c_cc[VSUSP] = 255;
       tty.main.c_cc[VDSUSP] = 255;
 #endif /* IBMR2AIX */
+      if (flow_control)
+       {
+#ifdef VSTART
+         tty.main.c_cc[VSTART] = '\021';
+#endif /* VSTART */
+#ifdef VSTOP
+         tty.main.c_cc[VSTOP] = '\023';
+#endif /* VSTOP */
+       }
       /* Also, PTY overloads NUL and BREAK.
         don't ignore break, but don't signal either, so it looks like NUL.
         This really serves a purpose only if running in an XTERM window