diff options
author | vincentdarley <vincentdarley> | 2003-04-16 08:16:21 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-04-16 08:16:21 (GMT) |
commit | f1f56b9418aa42690a4380a28754cf52407a29c5 (patch) | |
tree | 2c7a5b4ccbdf75e3ab0bff00b6c9615c84e823bd | |
parent | 1a6eff809b4d5e97aa1d93d21be5c807a5649468 (diff) | |
download | tcl-f1f56b9418aa42690a4380a28754cf52407a29c5.zip tcl-f1f56b9418aa42690a4380a28754cf52407a29c5.tar.gz tcl-f1f56b9418aa42690a4380a28754cf52407a29c5.tar.bz2 |
removed undesired 'static'
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclPathObj.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2003-04-16 Vince Darley <vincentdarley@users.sourceforge.net> + + * generic/tclPathObj.c: removed undesired 'static' for function + which is now shared (previously it was duplicated). + 2003-04-15 Joe English <jenglish@users.sourceforge.net> * doc/namespace.n: added example section "SCOPED SCRIPTS", supplied by Kevin Kenny. (Fixes [Bug 219183]) diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index 4f2aa25..62f5d27 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.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: tclPathObj.c,v 1.2 2003/04/14 15:48:38 vincentdarley Exp $ + * RCS: @(#) $Id: tclPathObj.c,v 1.3 2003/04/16 08:16:23 vincentdarley Exp $ */ #include "tclInt.h" @@ -132,7 +132,7 @@ typedef struct FsPath { * *--------------------------------------------------------------------------- */ -static Tcl_Obj* +Tcl_Obj* TclFSNormalizeAbsolutePath(interp, pathPtr, clientDataPtr) Tcl_Interp* interp; /* Interpreter to use */ Tcl_Obj *pathPtr; /* Absolute path to normalize */ |