diff options
author | dgp <dgp@users.sourceforge.net> | 2005-06-07 21:14:22 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-06-07 21:14:22 (GMT) |
commit | 2fcbb37a1b10ceee78d909cf4dc036e54651d058 (patch) | |
tree | bb1af55233b6c154581d72c4b8a21a8ff5293742 /generic | |
parent | ab2cff383bae8438e025d4f11ad7dfe7f2eecf17 (diff) | |
download | tcl-2fcbb37a1b10ceee78d909cf4dc036e54651d058.zip tcl-2fcbb37a1b10ceee78d909cf4dc036e54651d058.tar.gz tcl-2fcbb37a1b10ceee78d909cf4dc036e54651d058.tar.bz2 |
* generic/tclObj.c: Restored registration of the "procbody"
Tcl_ObjType, as required by the tclcompiler application.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclObj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 60dcf8e..d70ae28 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclObj.c,v 1.86 2005/06/06 20:54:18 kennykb Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.87 2005/06/07 21:14:29 dgp Exp $ */ #include "tclInt.h" @@ -388,6 +388,7 @@ TclInitObjSubsystem() Tcl_RegisterObjType(&tclNsNameType); Tcl_RegisterObjType(&tclCmdNameType); Tcl_RegisterObjType(&tclRegexpType); + Tcl_RegisterObjType(&tclProcBodyType); #ifdef TCL_COMPILE_STATS Tcl_MutexLock(&tclObjMutex); |