diff options
author | rmax <rmax> | 2008-03-03 14:54:42 (GMT) |
---|---|---|
committer | rmax <rmax> | 2008-03-03 14:54:42 (GMT) |
commit | 9b5fb7e99317fcfde568e2d8036c6924cb9a8ddd (patch) | |
tree | 98354c5e523d5b0dcc09e8e3229958b89719157c /unix/tclUnixChan.c | |
parent | 5f0c9929f8e88a008d55ba6c31980d7f0f4a5fd8 (diff) | |
download | tcl-9b5fb7e99317fcfde568e2d8036c6924cb9a8ddd.zip tcl-9b5fb7e99317fcfde568e2d8036c6924cb9a8ddd.tar.gz tcl-9b5fb7e99317fcfde568e2d8036c6924cb9a8ddd.tar.bz2 |
* unix/tclUnixChan.c: Fix mark and space parity on Linux, which
uses CMSPAR instead of PAREXT.
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 96a4665..629f9d0 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.92 2008/02/28 20:14:12 jenglish Exp $ + * RCS: @(#) $Id: tclUnixChan.c,v 1.93 2008/03/03 14:54:43 rmax Exp $ */ #include "tclInt.h" /* Internal definitions for Tcl. */ @@ -64,6 +64,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 |