@@ -2420,22 +2420,21 @@ TclCompileTokens(
24202420 Tcl_Interp * interp , /* Used for error and status reporting. */
24212421 Tcl_Token * tokenPtr , /* Pointer to first in an array of tokens to
24222422 * compile. */
2423- size_t count1 , /* Number of tokens to consider at tokenPtr.
2423+ Tcl_Size count , /* Number of tokens to consider at tokenPtr.
24242424 * Must be at least 1. */
24252425 CompileEnv * envPtr ) /* Holds the resulting instructions. */
24262426{
24272427 Tcl_DString textBuffer ; /* Holds concatenated chars from adjacent
24282428 * TCL_TOKEN_TEXT, TCL_TOKEN_BS tokens. */
24292429 char buffer [4 ] = "" ;
24302430 Tcl_Size i , numObjsToConcat , adjust ;
2431- size_t length ;
2431+ int length ;
24322432 unsigned char * entryCodeNext = envPtr -> codeNext ;
24332433#define NUM_STATIC_POS 20
24342434 int isLiteral ;
24352435 Tcl_Size maxNumCL , numCL ;
24362436 Tcl_Size * clPosition = NULL ;
24372437 int depth = TclGetStackDepth (envPtr );
2438- int count = count1 ;
24392438
24402439 /*
24412440 * If this is actually a literal, handle continuation lines by
@@ -2639,11 +2638,10 @@ TclCompileCmdWord(
26392638 Tcl_Interp * interp , /* Used for error and status reporting. */
26402639 Tcl_Token * tokenPtr , /* Pointer to first in an array of tokens for
26412640 * a command word to compile inline. */
2642- size_t count1 , /* Number of tokens to consider at tokenPtr.
2641+ Tcl_Size count , /* Number of tokens to consider at tokenPtr.
26432642 * Must be at least 1. */
26442643 CompileEnv * envPtr ) /* Holds the resulting instructions. */
26452644{
2646- int count = count1 ;
26472645
26482646 if ((count == 1 ) && (tokenPtr -> type == TCL_TOKEN_TEXT )) {
26492647 /*
0 commit comments