summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-07-10 16:57:33 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-07-10 16:57:33 (GMT)
commit5b220b431d55375e946437342605a78fa42d1bbb (patch)
treeb898f22f303c3528769f4ceb02394c1398abfa40 /ChangeLog
parentb9f79a9444dd23d26d5a80ecda522fcd5489b2ca (diff)
downloadtcl-5b220b431d55375e946437342605a78fa42d1bbb.zip
tcl-5b220b431d55375e946437342605a78fa42d1bbb.tar.gz
tcl-5b220b431d55375e946437342605a78fa42d1bbb.tar.bz2
* generic/tclCompExpr.c: Added a field for operator precedence
to be stored directly in the parse tree. There's no memory cost to this addition, since that memory would have been lost to alignment issues anyway. Also, converted precedence definitions and lookup tables to use symbolic constants instead of raw number for improved readability, and continued extending/improving/correcting comments.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d04b8d..c77dc20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-07-10 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclCompExpr.c: Added a field for operator precedence
+ to be stored directly in the parse tree. There's no memory cost to
+ this addition, since that memory would have been lost to alignment
+ issues anyway. Also, converted precedence definitions and lookup
+ tables to use symbolic constants instead of raw number for improved
+ readability, and continued extending/improving/correcting comments.
+
2007-07-09 Don Porter <dgp@users.sourceforge.net>
* generic/tclCompExpr.c: Revision so that the END lexeme never