summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-12-01 17:25:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-12-01 17:25:40 (GMT)
commite42f5d61b2902fac51008c50902cd763c4d96b18 (patch)
tree2f22bceab08e8a20c0f340e48e87feb6da6177ed
parenta8e3472731bd9d5045558167567afacadceb718d (diff)
downloadtcl-e42f5d61b2902fac51008c50902cd763c4d96b18.zip
tcl-e42f5d61b2902fac51008c50902cd763c4d96b18.tar.gz
tcl-e42f5d61b2902fac51008c50902cd763c4d96b18.tar.bz2
So long as we register only one, we can have multiple Tcl_ObjTypes with
the same name. This smooths migration. See obj-2.2 and tclsqlite usage.
-rw-r--r--generic/tclBinary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index b27ab4d..cb4534d 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.c
@@ -180,7 +180,7 @@ static const EnsembleImplMap decodeMap[] = {
*/
static const Tcl_ObjType properByteArrayType = {
- "proper bytearray",
+ "bytearray",
FreeByteArrayInternalRep,
DupByteArrayInternalRep,
UpdateStringOfByteArray,