summaryrefslogtreecommitdiffstats
path: root/generic/tclResult.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-10 07:50:31 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-10 07:50:31 (GMT)
commita2a03ea8fb6718cc472cc7dcb44f8e68aadb24ba (patch)
treeb27d28ac5054d661fb8510ac1b75127cbf036c79 /generic/tclResult.c
parent740e938393791a7c1fe675b21ece901fa6cbdd74 (diff)
parent216ea63416cffd9c521476d74fce958860d2acf9 (diff)
downloadtcl-a2a03ea8fb6718cc472cc7dcb44f8e68aadb24ba.zip
tcl-a2a03ea8fb6718cc472cc7dcb44f8e68aadb24ba.tar.gz
tcl-a2a03ea8fb6718cc472cc7dcb44f8e68aadb24ba.tar.bz2
Merge trunk
Diffstat (limited to 'generic/tclResult.c')
-rw-r--r--generic/tclResult.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/generic/tclResult.c b/generic/tclResult.c
index a59a704..c75a1f1 100644
--- a/generic/tclResult.c
+++ b/generic/tclResult.c
@@ -210,32 +210,6 @@ Tcl_DiscardInterpState(
/*
*----------------------------------------------------------------------
*
- * Tcl_GetStringResult --
- *
- * Returns an interpreter's result value as a string.
- *
- * Results:
- * The interpreter's result as a string.
- *
- * Side effects:
- * If the string result is empty, the object result is moved to the
- * string result, then the object result is reset.
- *
- *----------------------------------------------------------------------
- */
-
-const char *
-Tcl_GetStringResult(
- register Tcl_Interp *interp)/* Interpreter whose result to return. */
-{
- Interp *iPtr = (Interp *) interp;
-
- return TclGetString(iPtr->objResultPtr);
-}
-
-/*
- *----------------------------------------------------------------------
- *
* Tcl_SetObjResult --
*
* Arrange for objPtr to be an interpreter's result value.