summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-02-16 19:05:59 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-02-16 19:05:59 (GMT)
commit71ed44d7d074a3acc7f6e1805d1d1bca75d07fa4 (patch)
treed7c1a59572121d6f7348402dcd1e27edb8f8f332 /generic
parent01bd0fa774de5588f4331d2ed0e2ec402d605b91 (diff)
parent674ed242bc26f2a7d7e773dfd456fd95164f8bac (diff)
downloadtcl-71ed44d7d074a3acc7f6e1805d1d1bca75d07fa4.zip
tcl-71ed44d7d074a3acc7f6e1805d1d1bca75d07fa4.tar.gz
tcl-71ed44d7d074a3acc7f6e1805d1d1bca75d07fa4.tar.bz2
Merge in tip-282 branch so that they don't differ in gratuitous ways.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclCompExpr.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c
index 682017b..c9b21ce 100644
--- a/generic/tclCompExpr.c
+++ b/generic/tclCompExpr.c
@@ -283,20 +283,18 @@ enum Marks {
* parse tree. The sub-expression between
* parens becomes the single argument of the
* matching OPEN_PAREN unary operator. */
-
-#define SEPARATOR ( BINARY | 29)
-#define ASSIGN ( BINARY | 30)
- /* ASSIGN, like EXPON, is right
- * associative, and this distinction
- * is coded directly in ParseExpr() */
-
-#define END (BINARY | 31)
+#define END (BINARY | 28)
/* This lexeme represents the end of the
* string being parsed. Treating it as a
* binary operator follows the same logic as
* the CLOSE_PAREN lexeme and END pairs with
* START, in the same way that CLOSE_PAREN
* pairs with OPEN_PAREN. */
+#define SEPARATOR ( BINARY | 29)
+#define ASSIGN ( BINARY | 30)
+ /* ASSIGN, like EXPON, is right associative,
+ * and this distinction is coded directly in
+ * ParseExpr() */
/*
* When ParseExpr() builds the parse tree it must choose which operands to