diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-10-19 14:42:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-10-19 14:42:56 (GMT) |
commit | 58583ac83fd364a825038d5dfcdaa7c75aca836b (patch) | |
tree | 6399c75e66f3afa69cee62d2969f7b24d9d75d1c /generic/tclCompExpr.c | |
parent | 7fa6ef0e9c110e29240b9b90518d3bf5c2d52e07 (diff) | |
download | tcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.zip tcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.tar.gz tcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.tar.bz2 |
IntRep -> InternalRep. Internal changes only.
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index 1ffe099..52b62fc 100644 --- a/generic/tclCompExpr.c +++ b/generic/tclCompExpr.c @@ -2438,7 +2438,7 @@ CompileExprTree( * However, the design of the "global" and "local" * LiteralTable does not permit the value of lePtr->objPtr * to change. So rather than replace lePtr->objPtr, we do - * surgery to transfer our desired intrep into it. + * surgery to transfer our desired internalrep into it. */ objPtr->typePtr = literal->typePtr; @@ -2451,9 +2451,9 @@ CompileExprTree( * When optimize==0, we know the expression is a one-off and * there's nothing to be gained from sharing literals when * they won't live long, and the copies we have already have - * an appropriate intrep. In this case, skip literal + * an appropriate internalrep. In this case, skip literal * registration that would enable sharing, and use the routine - * that preserves intreps. + * that preserves internalreps. */ TclEmitPush(TclAddLiteralObj(envPtr, literal, NULL), envPtr); @@ -2488,7 +2488,7 @@ CompileExprTree( if ((tableValue->typePtr == NULL) && (objPtr->typePtr != NULL)) { /* - * Same intrep surgery as for OT_LITERAL. + * Same internalrep surgery as for OT_LITERAL. */ tableValue->typePtr = objPtr->typePtr; |