summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorrmax <rmax@noemail.net>2008-03-03 14:54:41 (GMT)
committerrmax <rmax@noemail.net>2008-03-03 14:54:41 (GMT)
commit2ecdff24eb604e2622e4f76cdd5e4000da339d04 (patch)
tree98354c5e523d5b0dcc09e8e3229958b89719157c /unix
parent8904130f3a35774a4dcfdc85b532cb8238f83df8 (diff)
downloadtcl-2ecdff24eb604e2622e4f76cdd5e4000da339d04.zip
tcl-2ecdff24eb604e2622e4f76cdd5e4000da339d04.tar.gz
tcl-2ecdff24eb604e2622e4f76cdd5e4000da339d04.tar.bz2
* unix/tclUnixChan.c: Fix mark and space parity on Linux, which
uses CMSPAR instead of PAREXT. FossilOrigin-Name: 701e7babf4c4ec4934afa6c4916b1d352efdfd96
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixChan.c5
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