diff options
author | dgp <dgp@users.sourceforge.net> | 2001-10-16 05:31:17 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-10-16 05:31:17 (GMT) |
commit | a6aca92723218392fb1a725dbe9fdbe5e9f4bd86 (patch) | |
tree | 423aa297b7e4d3d6fde03ebc45205a61d201476f /generic/tclFileName.c | |
parent | 15c387a97b11f816847a8836a2f60e091b7ff7ff (diff) | |
download | tcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.zip tcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.tar.gz tcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.tar.bz2 |
Undo of mistaken commit. Sorry!
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r-- | generic/tclFileName.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c index 72f5a5c..5833135 100644 --- a/generic/tclFileName.c +++ b/generic/tclFileName.c @@ -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: tclFileName.c,v 1.24 2001/10/16 05:10:34 dgp Exp $ + * RCS: @(#) $Id: tclFileName.c,v 1.25 2001/10/16 05:31:18 dgp Exp $ */ #include "tclInt.h" @@ -382,7 +382,7 @@ TclpGetNativePathType(pathObjPtr, driveNameLengthPtr, driveNameRef) if (!Tcl_RegExpExec(NULL, re, path, path)) { type = TCL_PATH_RELATIVE; } else { - CONST char *root, *end; + char *root, *end; Tcl_RegExpRange(re, 2, &root, &end); if (root != NULL) { type = TCL_PATH_RELATIVE; @@ -814,7 +814,7 @@ SplitMacPath(path) re = Tcl_GetRegExpFromObj(NULL, tsdPtr->macRootPatternPtr, REG_ADVANCED); if (Tcl_RegExpExec(NULL, re, path, path) == 1) { - CONST char *start, *end; + char *start, *end; Tcl_Obj *nextElt; /* |