summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authorsuresh <suresh>1998-06-03 09:14:10 (GMT)
committersuresh <suresh>1998-06-03 09:14:10 (GMT)
commitd94accfbbdf67223f238d232babcbdda6a9d420d (patch)
treef474511af705cb7021b560b191cfe65c7d33c999 /unix/tclUnixChan.c
parente57eeca0a36b6a0e2d707791bfc0a1953b98a1fb (diff)
downloadtcl-d94accfbbdf67223f238d232babcbdda6a9d420d.zip
tcl-d94accfbbdf67223f238d232babcbdda6a9d420d.tar.gz
tcl-d94accfbbdf67223f238d232babcbdda6a9d420d.tar.bz2
Renamed function 'Tcl_OpenFileChannel' to 'TclpOpenFileChannel'.
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 2c0e996..c194b66 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -1150,7 +1150,7 @@ TtyParseMode(interp, mode, speedPtr, parityPtr, dataPtr, stopPtr)
/*
*----------------------------------------------------------------------
*
- * Tcl_OpenFileChannel --
+ * TclpOpenFileChannel --
*
* Open an file based channel on Unix systems.
*
@@ -1167,7 +1167,7 @@ TtyParseMode(interp, mode, speedPtr, parityPtr, dataPtr, stopPtr)
*/
Tcl_Channel
-Tcl_OpenFileChannel(interp, fileName, modeString, permissions)
+TclpOpenFileChannel(interp, fileName, modeString, permissions)
Tcl_Interp *interp; /* Interpreter for error reporting;
* can be NULL. */
char *fileName; /* Name of file to open. */
@@ -1201,7 +1201,7 @@ Tcl_OpenFileChannel(interp, fileName, modeString, permissions)
/*
* This may occurr if modeString was "", for example.
*/
- panic("Tcl_OpenFileChannel: invalid mode value");
+ panic("TclpOpenFileChannel: invalid mode value");
return NULL;
}