diff options
author | dgp <dgp@users.sourceforge.net> | 2005-09-09 15:44:26 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-09-09 15:44:26 (GMT) |
commit | 9d73340679f7c5a710e47d19fe4cdfc41461afe3 (patch) | |
tree | 1ebbce67249a6ad57eb32c616b35a98b89eaf09e /ChangeLog | |
parent | 8edbe2e47e1209c5af81525c10cf38d303a796c5 (diff) | |
download | tcl-9d73340679f7c5a710e47d19fe4cdfc41461afe3.zip tcl-9d73340679f7c5a710e47d19fe4cdfc41461afe3.tar.gz tcl-9d73340679f7c5a710e47d19fe4cdfc41461afe3.tar.bz2 |
* generic/tclInt.h: New internal routines TclFormatObj()
* generic/tclStringObj.c: and TclAppendFormattedObjs() to offer
sprintf()-like means to append to Tcl_Obj. Work in progress toward
[RFE 572392].
* generic/tclCmdAH.c: Compiler directive NEW_FORMAT when #define'd
directs the [format] command to be implemented in terms of the new
TclAppendFormattedObjs() routine.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,14 @@ +2005-09-09 Don Porter <dgp@users.sourceforge.net> + + * generic/tclInt.h: New internal routines TclFormatObj() + * generic/tclStringObj.c: and TclAppendFormattedObjs() to offer + sprintf()-like means to append to Tcl_Obj. Work in progress toward + [RFE 572392]. + + * generic/tclCmdAH.c: Compiler directive NEW_FORMAT when #define'd + directs the [format] command to be implemented in terms of the new + TclAppendFormattedObjs() routine. + 2005-09-08 Donal K. Fellows <donal.k.fellows@manchester.ac.uk> TIP#254 IMPLEMENTATION |