diff options
author | jenglish <jenglish@flightlab.com> | 2008-02-26 21:50:50 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2008-02-26 21:50:50 (GMT) |
commit | 53088532f68e31bc87332ef8b6f5f0ad8ae66b39 (patch) | |
tree | 7f93574f3c071179922f1da8b4bb2739bb7731f0 /generic/tclCompExpr.c | |
parent | 2c695fbcd0bcccce2bb7bd362c5088789a96eb5a (diff) | |
download | tcl-53088532f68e31bc87332ef8b6f5f0ad8ae66b39.zip tcl-53088532f68e31bc87332ef8b6f5f0ad8ae66b39.tar.gz tcl-53088532f68e31bc87332ef8b6f5f0ad8ae66b39.tar.bz2 |
More stray trailing ","s.
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index d935747..e8fce11 100644 --- a/generic/tclCompExpr.c +++ b/generic/tclCompExpr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompExpr.c,v 1.95 2008/01/23 19:41:28 dgp Exp $ + * RCS: @(#) $Id: tclCompExpr.c,v 1.96 2008/02/26 21:50:51 jenglish Exp $ */ #include "tclInt.h" @@ -111,7 +111,7 @@ enum OperandTypes { enum Marks { MARK_LEFT, /* Next step of traversal is to visit left subtree */ MARK_RIGHT, /* Next step of traversal is to visit right subtree */ - MARK_PARENT, /* Next step of traversal is to return to parent */ + MARK_PARENT /* Next step of traversal is to return to parent */ }; /* |