summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-10-19 14:42:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-10-19 14:42:56 (GMT)
commit58583ac83fd364a825038d5dfcdaa7c75aca836b (patch)
tree6399c75e66f3afa69cee62d2969f7b24d9d75d1c /generic/tclCompile.c
parent7fa6ef0e9c110e29240b9b90518d3bf5c2d52e07 (diff)
downloadtcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.zip
tcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.tar.gz
tcl-58583ac83fd364a825038d5dfcdaa7c75aca836b.tar.bz2
IntRep -> InternalRep. Internal changes only.
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 6761c09..eb2e16b 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -2829,7 +2829,7 @@ TclInitByteCodeObj(
if (objPtr == fetched) {
/*
- * Prevent circular reference where the bytecode intrep of
+ * Prevent circular reference where the bytecode internalrep of
* a value contains a literal which is that same value.
* If this is allowed to happen, refcount decrements may not
* reach zero, and memory may leak. Bugs 467523, 3357771
@@ -2837,7 +2837,7 @@ TclInitByteCodeObj(
* NOTE: [Bugs 3392070, 3389764] We make a copy based completely
* on the string value, and do not call Tcl_DuplicateObj() so we
* can be sure we do not have any lingering cycles hiding in
- * the intrep.
+ * the internalrep.
*/
int numBytes;
const char *bytes = Tcl_GetStringFromObj(objPtr, &numBytes);