summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2007-07-31 08:23:07 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2007-07-31 08:23:07 (GMT)
commit3a5d89df042c423e60bc4fc0346f8e940c49d7aa (patch)
treec397c54d74e5eab6478330e3dc18f47caeb9870d /unix/tclUnixChan.c
parentf4994e6345f53a9f4b818391cf2ae8bda522d537 (diff)
downloadtcl-3a5d89df042c423e60bc4fc0346f8e940c49d7aa.zip
tcl-3a5d89df042c423e60bc4fc0346f8e940c49d7aa.tar.gz
tcl-3a5d89df042c423e60bc4fc0346f8e940c49d7aa.tar.bz2
One more bad change spotted by AKu
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 734b78d..34f85fb 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixChan.c,v 1.80 2007/07/31 08:19:31 dkf Exp $
+ * RCS: @(#) $Id: tclUnixChan.c,v 1.81 2007/07/31 08:23:07 dkf Exp $
*/
#include "tclInt.h" /* Internal definitions for Tcl. */
@@ -1718,7 +1718,7 @@ TtyInit(
!(iostate.sg_flags & RAW)) {
ttyPtr->stateUpdated = 1;
}
- CLEAR_BITS(iostate.sg_flags, EVENP | ODDP);
+ iostate.sg_flags &= EVENP | ODDP;
SET_BITS(iostate.sg_flags, RAW);
#endif /* USE_SGTTY */