From: Jim Meyering Date: Sun, 28 Mar 1993 16:16:43 +0000 (+0000) Subject: Accept `flush' option. From Arne H. Juul arnej@lise.unit.no X-Git-Tag: FILEUTILS-3_8_3b~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1c67d32959bc542c68351567938b695a5cf0092;p=thirdparty%2Fcoreutils.git Accept `flush' option. From Arne H. Juul arnej@lise.unit.no --- diff --git a/src/stty.c b/src/stty.c index 4fb8158299..b9daf0a12f 100644 --- a/src/stty.c +++ b/src/stty.c @@ -105,6 +105,9 @@ #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 (); @@ -346,6 +349,9 @@ static struct control_info control_info[] = #ifdef VLNEXT {"lnext", CLNEXT, VLNEXT}, #endif +#ifdef VFLUSHO + {"flush", CFLUSHO, VFLUSHO}, +#endif /* These must be last because of the display routines. */ {"min", 1, VMIN},