summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-11-02 10:11:17 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-11-02 10:11:17 (GMT)
commitf1990817283b9831ee0022ac4d46e1408c3ace82 (patch)
tree54652227d8800523fd19401133093af0d0460d14 /ChangeLog
parenta46f12ed13d72b7e85bbf9f646cc64e2cc2b0c74 (diff)
downloadtcl-f1990817283b9831ee0022ac4d46e1408c3ace82.zip
tcl-f1990817283b9831ee0022ac4d46e1408c3ace82.tar.gz
tcl-f1990817283b9831ee0022ac4d46e1408c3ace82.tar.bz2
Make core less eager to spew its guts all over the place; core symbols in
tclInt.h are now no longer EXTERN but instead MODULE_SCOPE.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 934e3d1..1dbd126 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-11-02 Donal K. Fellows <donal.k.fellows@man.ac.uk>
+ * generic/tclInt.h: Change uses of EXTERN to MODULE_SCOPE (defined
+ in this file too to be 'extern' if not overridden) as nothing
+ declared in tclInt.h is supposed to be visible outside the Tcl
+ core. If there *is* anything that extensions are actually using,
+ we can open this up later on. [Patch 1055668]
+
* doc/CrtChannel.3 (Tcl_GetChannelMode): Add synopsis. [Bug 1058446]
2004-11-01 Kevin B. Kenny <kennykb@acm.org>