summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-11-30 16:10:20 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-11-30 16:10:20 (GMT)
commitfa3bc4b41a79a1a27827362ae3a174b5bb85b3f2 (patch)
tree8bcfa6fea1ccdf1c10edbcd55a70269fa893739e /generic/tclInt.h
parent7e7cc4ff29c7c60467e3c3c61c861c2df30c5e78 (diff)
downloadtcl-fa3bc4b41a79a1a27827362ae3a174b5bb85b3f2.zip
tcl-fa3bc4b41a79a1a27827362ae3a174b5bb85b3f2.tar.gz
tcl-fa3bc4b41a79a1a27827362ae3a174b5bb85b3f2.tar.bz2
Stop [glob] complaining about empty list result. Continue support for
a no-op -nocomplain option, but don't document it. Old script support only.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index d548a16..8110248 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2592,16 +2592,6 @@ typedef struct TclFileAttrProcs {
typedef struct TclFile_ *TclFile;
-/*
- * The "globParameters" argument of the function TclGlob is an or'ed
- * combination of the following values:
- */
-
-#define TCL_GLOBMODE_NO_COMPLAIN 1
-#define TCL_GLOBMODE_JOIN 2
-#define TCL_GLOBMODE_DIR 4
-#define TCL_GLOBMODE_TAILS 8
-
typedef enum Tcl_PathPart {
TCL_PATH_DIRNAME,
TCL_PATH_TAIL,
@@ -2982,9 +2972,6 @@ MODULE_SCOPE int TclGetOpenModeEx(Tcl_Interp *interp,
int *binaryPtr);
MODULE_SCOPE Tcl_Obj * TclGetProcessGlobalValue(ProcessGlobalValue *pgvPtr);
MODULE_SCOPE const char *TclGetSrcInfoForCmd(Interp *iPtr, int *lenPtr);
-MODULE_SCOPE int TclGlob(Tcl_Interp *interp, char *pattern,
- Tcl_Obj *unquotedPrefix, int globFlags,
- Tcl_GlobTypeData *types);
MODULE_SCOPE int TclIncrObj(Tcl_Interp *interp, Tcl_Obj *valuePtr,
Tcl_Obj *incrPtr);
MODULE_SCOPE Tcl_Obj * TclIncrObjVar2(Tcl_Interp *interp, Tcl_Obj *part1Ptr,