summaryrefslogtreecommitdiffstats
path: root/generic
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)
commit0e33bed46567780c4d5e5f700e4a6b986801a0b0 (patch)
tree2f22bceab08e8a20c0f340e48e87feb6da6177ed /generic
parent5e2fde0cbb66a72f1a7eea2b830c3003696f4ca7 (diff)
downloadtcl-0e33bed46567780c4d5e5f700e4a6b986801a0b0.zip
tcl-0e33bed46567780c4d5e5f700e4a6b986801a0b0.tar.gz
tcl-0e33bed46567780c4d5e5f700e4a6b986801a0b0.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.
Diffstat (limited to 'generic')
-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,