diff options
author | vincentdarley <vincentdarley> | 2002-12-04 13:09:23 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-12-04 13:09:23 (GMT) |
commit | 8e711fbc8f9fa92e577821c9c5243bbd4c1d6a8c (patch) | |
tree | ece8c5fb3e39618118a34fe0c86c472597b8cf16 /generic/tclTestObj.c | |
parent | 3ec15d47f45aee77ef86ca5943b8c7624c37718c (diff) | |
download | tcl-8e711fbc8f9fa92e577821c9c5243bbd4c1d6a8c.zip tcl-8e711fbc8f9fa92e577821c9c5243bbd4c1d6a8c.tar.gz tcl-8e711fbc8f9fa92e577821c9c5243bbd4c1d6a8c.tar.bz2 |
filesystem cleanup fix, virtual filesystem load fix
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r-- | generic/tclTestObj.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index ec489d6..5c45d70 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTestObj.c,v 1.11 2002/02/15 23:42:12 kennykb Exp $ + * RCS: @(#) $Id: tclTestObj.c,v 1.12 2002/12/04 13:09:24 vincentdarley Exp $ */ #include "tclInt.h" @@ -911,7 +911,8 @@ TeststringobjCmd(clientData, interp, objc, objv) TestString *strPtr; static CONST char *options[] = { "append", "appendstrings", "get", "get2", "length", "length2", - "set", "set2", "setlength", "ualloc", (char *) NULL + "set", "set2", "setlength", "ualloc", "getunicode", + (char *) NULL }; if (objc < 3) { @@ -1073,6 +1074,12 @@ TeststringobjCmd(clientData, interp, objc, objv) } Tcl_SetIntObj(Tcl_GetObjResult(interp), length); break; + case 10: /* getunicode */ + if (objc != 3) { + goto wrongNumArgs; + } + Tcl_GetUnicodeFromObj(varPtr[varIndex], NULL); + break; } return TCL_OK; |