diff options
author | dgp <dgp@users.sourceforge.net> | 2007-07-10 16:57:33 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-07-10 16:57:33 (GMT) |
commit | 5b220b431d55375e946437342605a78fa42d1bbb (patch) | |
tree | b898f22f303c3528769f4ceb02394c1398abfa40 /ChangeLog | |
parent | b9f79a9444dd23d26d5a80ecda522fcd5489b2ca (diff) | |
download | tcl-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-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |