summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>1999-12-12 22:46:38 (GMT)
committerhobbs <hobbs@noemail.net>1999-12-12 22:46:38 (GMT)
commit6903d4248ed3cf5dd1f97c426f7ab0a2ac0b6dde (patch)
tree099c2ed13e958d20c32dc3ec5fc35983947482f1 /generic/tclEncoding.c
parent8b4e9effab9cff733423b22f2ace6b0b36ab7c99 (diff)
downloadtcl-6903d4248ed3cf5dd1f97c426f7ab0a2ac0b6dde.zip
tcl-6903d4248ed3cf5dd1f97c426f7ab0a2ac0b6dde.tar.gz
tcl-6903d4248ed3cf5dd1f97c426f7ab0a2ac0b6dde.tar.bz2
* doc/glob.n:
* tests/fileName.test: * generic/tclInt.decls: * generic/tclInt.h: * generic/tclIntDecls.h: * generic/tclStubInit.c: * generic/tclEncoding.c: * generic/tclFileName.c: * mac/tclMacFile.c: * unix/tclUnixFile.c: * win/tclWinFile.c: enhanced the glob command with the new options -types -path -directory and -join. Deprecated TclpMatchFiles with TclpMatchFilesTypes, extended TclGlob and TclDoGlob and added GlobTypeData structure. FossilOrigin-Name: c20c742c78c750b08e303e5277f5e5800cd9f65b
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index ad86495..89453f5 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclEncoding.c,v 1.3 1999/12/02 02:03:22 redman Exp $
+ * RCS: @(#) $Id: tclEncoding.c,v 1.4 1999/12/12 22:46:41 hobbs Exp $
*/
#include "tclInt.h"
@@ -588,7 +588,7 @@ Tcl_GetEncodingNames(interp)
strcpy(globArgString, "*.enc");
if ((Tcl_Chdir(string) == 0)
&& (Tcl_Chdir("encoding") == 0)
- && (TclGlob(interp, globArgString, 0) == TCL_OK)) {
+ && (TclGlob(interp, globArgString, NULL, 0, NULL) == TCL_OK)) {
objc2 = 0;
Tcl_ListObjGetElements(NULL, Tcl_GetObjResult(interp), &objc2,