home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.utils.bug
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!nobipol.unit.NO!store
- From: store@nobipol.unit.NO (Store manager)
- Subject: shellutils stty missing flush
- Message-ID: <199211211955.AA12553@flory.phys.unit.no>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- Distribution: gnu
- Date: Sat, 21 Nov 1992 21:55:06 GMT
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Lines: 32
-
- In shellutils-1.8, the 'stty' program supplied is missing the
- 'flush' control character. Diffs follow.
- Thanks,
- Arne H. Juul -- arnej@lise.unit.no
-
- *** stty.c.orig Wed Oct 28 21:19:41 1992
- --- stty.c Sat Nov 21 20:22:41 1992
- ***************
- *** 105,110 ****
- --- 105,113 ----
- #if defined(VLNEXT) && !defined(CLNEXT)
- #define CLNEXT Control ('v')
- #endif
- + #if defined(VFLUSHO) && !defined(CFLUSHO)
- + #define CFLUSHO Control ('o')
- + #endif
-
- char *visible ();
- unsigned long baud_to_value ();
- ***************
- *** 345,350 ****
- --- 348,356 ----
- #endif
- #ifdef VLNEXT
- {"lnext", CLNEXT, VLNEXT},
- + #endif
- + #ifdef VFLUSHO
- + {"flush", CFLUSHO, VFLUSHO},
- #endif
-
- /* These must be last because of the display routines. */
-
-