summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2012-10-03 09:38:50 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2012-10-03 09:38:50 (GMT)
commitb51cc7fb86f2496499946cbec78cba6aeda1e470 (patch)
treed9b2d594ecc34cd9f16a8e002fc84d91c6411cba /generic
parent600a6fff72cc36cbc608170f94758552f0108c17 (diff)
downloadtcl-b51cc7fb86f2496499946cbec78cba6aeda1e470.zip
tcl-b51cc7fb86f2496499946cbec78cba6aeda1e470.tar.gz
tcl-b51cc7fb86f2496499946cbec78cba6aeda1e470.tar.bz2
documented new C API; corrected type signature of no-zlib fallback function
Diffstat (limited to 'generic')
-rw-r--r--generic/tclZlib.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c
index 20130d1..2054b15 100644
--- a/generic/tclZlib.c
+++ b/generic/tclZlib.c
@@ -3974,15 +3974,12 @@ Tcl_ZlibAdler32(
return 0;
}
-int
+void
Tcl_ZlibStreamSetCompressionDictionary(
- Tcl_Interp *interp,
- Tcl_ZlibStream zhandle,
+ Tcl_ZlibStream zshandle,
Tcl_Obj *compressionDictionaryObj)
{
- Tcl_SetObjResult(interp, Tcl_NewStringObj("unimplemented", -1));
- Tcl_SetErrorCode(interp, "TCL", "UNIMPLEMENTED", NULL);
- return TCL_ERROR;
+ /* Do nothing. */
}
#endif /* HAVE_ZLIB */