From 6dcbff18844a8181ed502d10d6004ae66adddfb6 Mon Sep 17 00:00:00 2001 From: rmax Date: Mon, 3 Mar 2008 15:01:12 +0000 Subject: Fix mark and space parity on Linux --- ChangeLog | 5 +++++ unix/tclUnixChan.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 25626fd..dfc3ba5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-03 Reinhard Max + + * unix/tclUnixChan.c: Fix mark and space parity on Linux, which + uses CMSPAR instead of PAREXT. + 2008-02-27 Pat Thoyts * library/http/pkgIndex.tcl: Backported 2.5.5 changes from 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 -- cgit v0.12