diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 00:20:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 00:20:57 (GMT) |
commit | 0cf9c26b08c885caa146634eadddc5fb3dbcd5e7 (patch) | |
tree | b6e3d97e6182fe7f70d8e6a47a385064b885baaf /generic/tcl.h | |
parent | 284b205a9a4c6d334b4f752ea17018f610a960bb (diff) | |
parent | 37e6c3852b68f12e24e223e1a1a5d30b1bafb13f (diff) | |
download | tcl-0cf9c26b08c885caa146634eadddc5fb3dbcd5e7.zip tcl-0cf9c26b08c885caa146634eadddc5fb3dbcd5e7.tar.gz tcl-0cf9c26b08c885caa146634eadddc5fb3dbcd5e7.tar.bz2 |
IMPLEMENTATION OF TIP#416: New Options for 'load': -global and -lazy
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 5f6146e..147672c 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -2362,6 +2362,14 @@ typedef int (Tcl_ArgvGenFuncProc)(ClientData clientData, Tcl_Interp *interp, /* *---------------------------------------------------------------------------- + * Definitions needed for the Tcl_LoadFile function. [TIP #416] + */ + +#define TCL_LOAD_GLOBAL 1 +#define TCL_LOAD_LAZY 2 + +/* + *---------------------------------------------------------------------------- * Single public declaration for NRE. */ |