diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-04 19:53:44 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-04 19:53:44 (GMT) |
commit | 83776b137b93bcfcd1d24073608f1283bf839a65 (patch) | |
tree | d15f6e6f59704223e1a370318561cce721a9389e /generic/tclIO.c | |
parent | 4ae09b65725a646ac0ecde14e3972a5af3eb132a (diff) | |
download | tcl-83776b137b93bcfcd1d24073608f1283bf839a65.zip tcl-83776b137b93bcfcd1d24073608f1283bf839a65.tar.gz tcl-83776b137b93bcfcd1d24073608f1283bf839a65.tar.bz2 |
Tcl_InputEncodingError() -> TclInputEncodingError. It will be split off in a separate TIP
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index c28a7f5..b7282c9 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -7612,7 +7612,7 @@ Tcl_InputBuffered( /* *---------------------------------------------------------------------- * - * Tcl_InputEncodingError -- + * TclInputEncodingError -- * * Returns 1 if input is in an encoding error position, 0 otherwise. * @@ -7626,7 +7626,7 @@ Tcl_InputBuffered( */ int -Tcl_InputEncodingError( +TclInputEncodingError( Tcl_Channel chan) /* Is this channel blocked? */ { ChannelState *statePtr = ((Channel *) chan)->state; |