diff options
author | rmax <rmax> | 2008-03-03 15:01:12 (GMT) |
---|---|---|
committer | rmax <rmax> | 2008-03-03 15:01:12 (GMT) |
commit | fb9fe55c55e543b3d793690650071f788c2665c6 (patch) | |
tree | 44adf722947a9019054b48e696fc2d9b6d8e4aa9 /unix/tclUnixChan.c | |
parent | 1b8447c21ce7d1958ca0ffcf12b14edc7fadfd1b (diff) | |
download | tcl-fb9fe55c55e543b3d793690650071f788c2665c6.zip tcl-fb9fe55c55e543b3d793690650071f788c2665c6.tar.gz tcl-fb9fe55c55e543b3d793690650071f788c2665c6.tar.bz2 |
Fix mark and space parity on Linux
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r-- | unix/tclUnixChan.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index 5c4cb65..33b52b8 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.42.2.10 2006/11/28 16:29:48 kennykb Exp $ + * RCS: @(#) $Id: tclUnixChan.c,v 1.42.2.11 2008/03/03 15:01:14 rmax Exp $ */ #include "tclInt.h" /* Internal definitions for Tcl. */ @@ -96,6 +96,9 @@ # if !defined(CRTSCTS) && defined(CNEW_RTSCTS) # define CRTSCTS CNEW_RTSCTS # endif /* !CRTSCTS&CNEW_RTSCTS */ +# if !defined(PAREXT) && defined(CMSPAR) +# define PAREXT CMSPAR +# endif /* !PAREXT&&CMSPAR */ #else /* !USE_TERMIOS */ #ifdef USE_TERMIO |