summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-09-25 16:49:55 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-09-25 16:49:55 (GMT)
commit368d2d623f802dda05805c7e8c1d147a74018998 (patch)
tree7c9044b579c67a3f855b8d0d24ea6d7e5953598e /generic/tclParse.c
parentf148bcf93bd6308c33c81c54a462b10ab74a6eee (diff)
downloadtcl-368d2d623f802dda05805c7e8c1d147a74018998.zip
tcl-368d2d623f802dda05805c7e8c1d147a74018998.tar.gz
tcl-368d2d623f802dda05805c7e8c1d147a74018998.tar.bz2
Woo hoo! Builds on one platform (Solaris8/SPARC with SunPro CC)
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r--generic/tclParse.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c
index a6eaab3..eb80361 100644
--- a/generic/tclParse.c
+++ b/generic/tclParse.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclParse.c,v 1.16 2001/09/13 11:56:20 msofer Exp $
+ * RCS: @(#) $Id: tclParse.c,v 1.16.2.1 2001/09/25 16:49:56 dkf Exp $
*/
#include "tclInt.h"
@@ -648,7 +648,7 @@ ParseTokens(src, mask, parsePtr)
}
}
tokenPtr->type = TCL_TOKEN_BS;
- Tcl_UtfBackslash(src, &tokenPtr->size, utfBytes);
+ Tcl_UtfBackslash(src, (int *)&tokenPtr->size, utfBytes);
parsePtr->numTokens++;
src += tokenPtr->size;
} else if (*src == 0) {
@@ -1155,7 +1155,8 @@ Tcl_EvalTokensStandard(interp, tokenPtr, count)
char nameBuffer[MAX_VAR_CHARS+1];
char *varName, *index;
char *p = NULL; /* Initialized to avoid compiler warning. */
- int length, code;
+ int code;
+ Tcl_Length length;
/*
* The only tricky thing about this procedure is that it attempts to
@@ -2326,7 +2327,7 @@ TclObjCommandComplete(objPtr)
* to check. */
{
char *script;
- int length;
+ Tcl_Length length;
script = Tcl_GetStringFromObj(objPtr, &length);
return CommandComplete(script, length);