diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-04-13 23:00:58 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-04-13 23:00:58 (GMT) |
| commit | c2c0e55bcad2a46e901284f3a1b677e6dea7daeb (patch) | |
| tree | 1890425f7f2828a83f2ab35dc2aeefd6bc2a908d | |
| parent | 63701cbbb51dbffec533377fcc312a39f0e63f6e (diff) | |
| download | tcl-c2c0e55bcad2a46e901284f3a1b677e6dea7daeb.zip tcl-c2c0e55bcad2a46e901284f3a1b677e6dea7daeb.tar.gz tcl-c2c0e55bcad2a46e901284f3a1b677e6dea7daeb.tar.bz2 | |
Put back a comment, which should not have been removed
| -rw-r--r-- | generic/tclInt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 1eab76d..98cab9b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -224,6 +224,13 @@ typedef struct TclVarHashTable { #endif /* TCL_MAJOR_VERSION > 8 */ } TclVarHashTable; +/* + * Define this to reduce the amount of space that the average namespace + * consumes by only allocating the table of child namespaces when necessary. + * Defining it breaks compatibility for Tcl extensions (e.g., itcl) which + * reach directly into the Namespace structure. + */ + #undef BREAK_NAMESPACE_COMPAT /* |
