diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-07-10 19:18:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-07-10 19:18:17 (GMT) |
commit | ec3c18e54e7411b1a18b2695fac6ce00069849b4 (patch) | |
tree | a1d6efb47f9187208e5cd4bf8f4a36bd9d4d1e9d /doc/CrtCloseHdlr.3 | |
parent | 9a9c228341c0256a141aa964d570d563e177440c (diff) | |
download | tcl-ec3c18e54e7411b1a18b2695fac6ce00069849b4.zip tcl-ec3c18e54e7411b1a18b2695fac6ce00069849b4.tar.gz tcl-ec3c18e54e7411b1a18b2695fac6ce00069849b4.tar.bz2 |
Remove 4 unneeded compatibility macro's, because those functions never return -1 anyway.
Change documentation to use void * in stead of ClientData
Diffstat (limited to 'doc/CrtCloseHdlr.3')
-rw-r--r-- | doc/CrtCloseHdlr.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/CrtCloseHdlr.3 b/doc/CrtCloseHdlr.3 index bac2431..1046ea3 100644 --- a/doc/CrtCloseHdlr.3 +++ b/doc/CrtCloseHdlr.3 @@ -26,7 +26,7 @@ void The channel for which to create or delete a close callback. .AP Tcl_CloseProc *proc in The procedure to call as the callback. -.AP ClientData clientData in +.AP void *clientData in Arbitrary one-word value to pass to \fIproc\fR. .BE .SH DESCRIPTION @@ -38,7 +38,7 @@ Arbitrary one-word value to pass to \fIproc\fR. .PP .CS typedef void \fBTcl_CloseProc\fR( - ClientData \fIclientData\fR); + void *\fIclientData\fR); .CE .PP The \fIclientData\fR is the same as the value provided in the call to |