<div dir="ltr">Don't flush the tty device input queue when setting device attribute.<br><br>Rationale:<br>Â * microcom: The tty device might already have a _good enough_ termios<br>Â Â to read data from. Flushing the input queue just to set the terminal<br>Â Â attribute would result in data loss in this case.<br>Â * stty: This command doesn't read nor write data to the tty device, so<br>Â Â flushing the input queue doesn't make sense here. The program<br>Â Â actually talking to the tty should decide if it wants the tty<br>Â Â flushed or not.<br>Â Â Note: other implementations of stty also uses TCSANOW (bsd) or<br>Â Â TCSADRAIN (coreutils), so I think this assumption is fine.</div>