diff options
author | hobbs <hobbs> | 2002-11-07 18:50:16 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-11-07 18:50:16 (GMT) |
commit | 6c70fb1feaa46069f7d66d8052c2f6771520ae41 (patch) | |
tree | d24f7ca8ed7efa3f55c51741982a5e5ddd1d99af | |
parent | e8dd383967c5452f2056674fd071a1ee9422bb67 (diff) | |
download | tcl-6c70fb1feaa46069f7d66d8052c2f6771520ae41.zip tcl-6c70fb1feaa46069f7d66d8052c2f6771520ae41.tar.gz tcl-6c70fb1feaa46069f7d66d8052c2f6771520ae41.tar.bz2 |
reduce TCL_RESULT_SIZE from 200 to 20
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index ca46b16..897ea45 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.70.2.9.2.3 2001/12/04 21:52:08 andreas_kupries Exp $ + * RCS: @(#) $Id: tcl.h,v 1.70.2.9.2.4 2002/11/07 18:50:16 hobbs Exp $ */ #ifndef _TCL @@ -518,7 +518,7 @@ typedef struct stat *Tcl_Stat_; #define TCL_BREAK 3 #define TCL_CONTINUE 4 -#define TCL_RESULT_SIZE 200 +#define TCL_RESULT_SIZE 20 /* * Argument descriptors for math function callbacks in expressions: |