summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r--generic/tclPathObj.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c
index 9a44863..7664827 100644
--- a/generic/tclPathObj.c
+++ b/generic/tclPathObj.c
@@ -40,11 +40,11 @@ static int MakeTildeRelativePath(Tcl_Interp *interp,
*/
static const Tcl_ObjType fsPathType = {
- "path", /* name */
- FreeFsPathInternalRep, /* freeIntRepProc */
- DupFsPathInternalRep, /* dupIntRepProc */
- UpdateStringOfFsPath, /* updateStringProc */
- SetFsPathFromAny, /* setFromAnyProc */
+ "path", /* name */
+ FreeFsPathInternalRep, /* freeIntRepProc */
+ DupFsPathInternalRep, /* dupIntRepProc */
+ UpdateStringOfFsPath, /* updateStringProc */
+ SetFsPathFromAny, /* setFromAnyProc */
TCL_OBJTYPE_V0
};
@@ -2347,7 +2347,7 @@ DupFsPathInternalRep(
static void
UpdateStringOfFsPath(
- Tcl_Obj *pathPtr) /* path obj with string rep to update. */
+ Tcl_Obj *pathPtr) /* path obj with string rep to update. */
{
FsPath *fsPathPtr = PATHOBJ(pathPtr);
Tcl_Size cwdLen;
@@ -2469,11 +2469,11 @@ TclNativePathInFilesystem(
*/
int
MakeTildeRelativePath(
- Tcl_Interp *interp, /* May be NULL. Only used for error messages */
- const char *user, /* User name. NULL -> current user */
- const char *subPath, /* Rest of path. May be NULL */
- Tcl_DString *dsPtr) /* Output. Is initialized by the function. Must be
- * freed on success */
+ Tcl_Interp *interp, /* May be NULL. Only used for error messages */
+ const char *user, /* User name. NULL -> current user */
+ const char *subPath, /* Rest of path. May be NULL */
+ Tcl_DString *dsPtr) /* Output. Is initialized by the function. Must
+ * be freed on success */
{
const char *dir;
Tcl_DString dirString;
@@ -2537,8 +2537,8 @@ MakeTildeRelativePath(
*/
Tcl_Obj *
TclGetHomeDirObj(
- Tcl_Interp *interp, /* May be NULL. Only used for error messages */
- const char *user) /* User name. NULL -> current user */
+ Tcl_Interp *interp, /* May be NULL. Only used for error messages */
+ const char *user) /* User name. NULL -> current user */
{
Tcl_DString dirString;
@@ -2569,7 +2569,7 @@ TclGetHomeDirObj(
*/
Tcl_Obj *
TclResolveTildePath(
- Tcl_Interp *interp, /* May be NULL. Only used for error messages */
+ Tcl_Interp *interp, /* May be NULL. Only used for error messages */
Tcl_Obj *pathObj)
{
const char *path;