summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2007-06-09 20:22:24 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2007-06-09 20:22:24 (GMT)
commit37c6ead0d59cef51c72652296571b93d0719aad5 (patch)
treee545be1533192d8103fa06cf685aa1f3cffde031
parenta4338c631ef67bfe928e7764ab1fc89d0a3a2e62 (diff)
downloadtcl-37c6ead0d59cef51c72652296571b93d0719aad5.zip
tcl-37c6ead0d59cef51c72652296571b93d0719aad5.tar.gz
tcl-37c6ead0d59cef51c72652296571b93d0719aad5.tar.bz2
added incompat warning in Changelog
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bfcb88..9d75fe7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,14 @@
in TclCheck[Interp|Execution]Traces(). Also insured that the
strings are properly nul terminated at the correct length
[Bug 1693986]
+
+ ***POTENTIAL INCOMPATIBILITY in internal API***
+ The functions TclCheckInterpTraces() and TclCheckExecutionTraces()
+ (in internal stubs) used to be noops if the command string was
+ NULL, this is not true anymore: if the command string is NULL,
+ they generate an appropriate string from (objc,objv) and use it to
+ call the traces. The caller might as well not call them with a
+ NULL string if he was expecting a noop.
* generic/tclBasic.c: Extend usage of TclLimitReady() and
* generic/tclExecute.c: (new) TclLimitExceeded() macros.