diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclIntDecls.h | 17 |
2 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2010-07-02 Jan Nijtmans <nijtmans@users.sf.net> + + * generic/tclIntDecls.h [Bug #803489] Tcl_FindNamespace problem in the + Stubs table + 2010-07-01 Donal K. Fellows <dkf@users.sf.net> * doc/mathop.n: [Bug 3023165]: Fix typo that was preventing proper diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index ce83ab5..8028b41 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.112.2.2 2010/02/07 22:16:54 nijtmans Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.112.2.3 2010/07/02 20:49:47 nijtmans Exp $ */ #ifndef _TCLINTDECLS @@ -30,6 +30,21 @@ # endif #endif +/* [Bug #803489] Tcl_FindNamespace problem in the Stubs table */ +#undef Tcl_AppendExportList +#undef Tcl_CreateNamespace +#undef Tcl_DeleteNamespace +#undef Tcl_Export +#undef Tcl_FindCommand +#undef Tcl_FindNamespace +#undef Tcl_FindNamespaceVar +#undef Tcl_ForgetImport +#undef Tcl_GetCommandFromObj +#undef Tcl_GetCommandFullName +#undef Tcl_GetCurrentNamespace +#undef Tcl_GetGlobalNamespace +#undef Tcl_Import + /* * WARNING: This file is automatically generated by the tools/genStubs.tcl * script. Any modifications to the function declarations below should be made |