diff options
author | redman <redman> | 1999-07-02 21:59:18 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-02 21:59:18 (GMT) |
commit | cd0cbda2bccf9d04fd23795065755fb079d328ca (patch) | |
tree | 694f4da63f5791e414805022552c69377e261a20 /generic/tcl.decls | |
parent | 2472e6704472024174fc054de2aa3355c79db345 (diff) | |
download | tcl-cd0cbda2bccf9d04fd23795065755fb079d328ca.zip tcl-cd0cbda2bccf9d04fd23795065755fb079d328ca.tar.gz tcl-cd0cbda2bccf9d04fd23795065755fb079d328ca.tar.bz2 |
Fix Tcl_GetStackedChannel declaration, the function
returns a Tcl_Channel, not void.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 354882e..118cd49 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.19 1999/07/02 19:51:29 welch Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.20 1999/07/02 21:59:18 redman Exp $ library tcl @@ -990,7 +990,7 @@ declare 282 generic { void Tcl_UnstackChannel(Tcl_Interp *interp, Tcl_Channel chan) } declare 283 generic { - void Tcl_GetStackedChannel(Tcl_Channel chan) + Tcl_Channel Tcl_GetStackedChannel(Tcl_Channel chan) } # Reserved for future use (8.0.x vs. 8.1) # declare 284 generic { |