summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-02-06 19:04:36 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-02-06 19:04:36 (GMT)
commit11b2556b272a74d9456a2b0b9cef5ccc76fd8316 (patch)
tree0200708c41644616f3064cf13f8525b0194b9899 /generic/tclInt.h
parent204a41c65d68c707c0b4e6114424444c59e75808 (diff)
downloadtcl-11b2556b272a74d9456a2b0b9cef5ccc76fd8316.zip
tcl-11b2556b272a74d9456a2b0b9cef5ccc76fd8316.tar.gz
tcl-11b2556b272a74d9456a2b0b9cef5ccc76fd8316.tar.bz2
Revised ReadChars to restore an attempt to make sure we do not short readdgp_may_be_pointless
because of a false notion of limited storage space. The test suite does not appear to demonstrate any case where this matters. Could be an incomplete test suite, or an example of pointless code.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index a998460..0c09ec0 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2571,6 +2571,8 @@ MODULE_SCOPE int TclGetOpenModeEx(Tcl_Interp *interp,
int *binaryPtr);
MODULE_SCOPE Tcl_Obj * TclGetProcessGlobalValue(ProcessGlobalValue *pgvPtr);
MODULE_SCOPE const char *TclGetSrcInfoForCmd(Interp *iPtr, int *lenPtr);
+MODULE_SCOPE char * TclGetStringStorage(Tcl_Obj *objPtr,
+ unsigned int *sizePtr);
MODULE_SCOPE int TclGlob(Tcl_Interp *interp, char *pattern,
Tcl_Obj *unquotedPrefix, int globFlags,
Tcl_GlobTypeData *types);