summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2009-11-05 19:35:20 (GMT)
committerandreas_kupries <akupries@shaw.ca>2009-11-05 19:35:20 (GMT)
commit8f57a0b74ebdd06b863f18306f18ff4790020cf6 (patch)
treec405c426b906f7d0e8b99c28347f923687b236ad /ChangeLog
parenta27ebb15203548a964fd1ff14415b61b853dc154 (diff)
downloadtcl-8f57a0b74ebdd06b863f18306f18ff4790020cf6.zip
tcl-8f57a0b74ebdd06b863f18306f18ff4790020cf6.tar.gz
tcl-8f57a0b74ebdd06b863f18306f18ff4790020cf6.tar.bz2
* library/safe.tcl: A series of patches which bring the SafeBase
up to date with code guidelines, Tcl's features, also eliminating a number of inefficiencies along the way. (4) Moved the multiple namespace eval's around. Command export at the top, everything else (var decls, argument parsing setup) at the bottom.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d77a52..63d2e86 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,12 +3,15 @@
* library/safe.tcl: A series of patches which bring the SafeBase
up to date with code guidelines, Tcl's features, also eliminating
a number of inefficiencies along the way.
- (1) Change all procedure names to be fully qualified.
- (2) Move the procedures out of the namespace eval. Keep their
- locations. IOW, break the namespace eval apart into small
- sectionsnot covering the procedure definitions.
- (3) Reindent the code. Just lots of whitespace
+ (1) Changed all procedure names to be fully qualified.
+ (2) Moved the procedures out of the namespace eval. Kept their
+ locations. IOW, broke the namespace eval apart into small sections
+ not covering the procedure definitions.
+ (3) Reindented the code. Just lots of whitespace
changes. Functionality unchanged.
+ (4) Moved the multiple namespace eval's around. Command export at
+ the top, everything else (var decls, argument parsing setup) at
+ the bottom.
2009-11-02 Kevin B. Kenny <kennykb@acm.org>