diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-10-24 09:50:09 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-10-24 09:50:09 (GMT) |
commit | c450611fa62e31564086453d6921a47bd7fb9044 (patch) | |
tree | 619b0222ff0ba50faefe176fa0080011972e3d07 /generic/tclInt.h | |
parent | 0dfd8fc69d7d64b99cf8585a29cfe35133865249 (diff) | |
download | tcl-c450611fa62e31564086453d6921a47bd7fb9044.zip tcl-c450611fa62e31564086453d6921a47bd7fb9044.tar.gz tcl-c450611fa62e31564086453d6921a47bd7fb9044.tar.bz2 |
Added compilation of [dict unset]; the bytecode needed already existed anyway.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 860755a..ea712b8 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3519,6 +3519,9 @@ MODULE_SCOPE int TclCompileDictLappendCmd(Tcl_Interp *interp, MODULE_SCOPE int TclCompileDictSetCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileDictUnsetCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileDictUpdateCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |