home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / gnu / utils / bug / 2096 < prev    next >
Encoding:
Text File  |  1992-11-21  |  1.1 KB  |  45 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!nobipol.unit.NO!store
  3. From: store@nobipol.unit.NO (Store manager)
  4. Subject: shellutils stty missing flush
  5. Message-ID: <199211211955.AA12553@flory.phys.unit.no>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Sat, 21 Nov 1992 21:55:06 GMT
  10. Approved: bug-gnu-utils@prep.ai.mit.edu
  11. Lines: 32
  12.  
  13.    In shellutils-1.8, the 'stty' program supplied is missing the
  14. 'flush' control character. Diffs follow.
  15.    Thanks,
  16. Arne H. Juul -- arnej@lise.unit.no
  17.  
  18. *** stty.c.orig    Wed Oct 28 21:19:41 1992
  19. --- stty.c    Sat Nov 21 20:22:41 1992
  20. ***************
  21. *** 105,110 ****
  22. --- 105,113 ----
  23.   #if defined(VLNEXT) && !defined(CLNEXT)
  24.   #define    CLNEXT Control ('v')
  25.   #endif
  26. + #if defined(VFLUSHO) && !defined(CFLUSHO)
  27. + #define    CFLUSHO Control ('o')
  28. + #endif
  29.   
  30.   char *visible ();
  31.   unsigned long baud_to_value ();
  32. ***************
  33. *** 345,350 ****
  34. --- 348,356 ----
  35.   #endif
  36.   #ifdef VLNEXT
  37.     {"lnext", CLNEXT, VLNEXT},
  38. + #endif
  39. + #ifdef VFLUSHO
  40. +   {"flush", CFLUSHO, VFLUSHO},
  41.   #endif
  42.   
  43.     /* These must be last because of the display routines. */
  44.  
  45.