diff options
| author | jenglish@flightlab.com <jenglish> | 2008-02-26 21:50:50 (GMT) |
|---|---|---|
| committer | jenglish@flightlab.com <jenglish> | 2008-02-26 21:50:50 (GMT) |
| commit | ce0c8420b916813fae8d6a6dc7356e7ed8cffa18 (patch) | |
| tree | 7f93574f3c071179922f1da8b4bb2739bb7731f0 | |
| parent | e73d46965ef93ed718dca59a4074cb5cd90b41ef (diff) | |
| download | tcl-ce0c8420b916813fae8d6a6dc7356e7ed8cffa18.zip tcl-ce0c8420b916813fae8d6a6dc7356e7ed8cffa18.tar.gz tcl-ce0c8420b916813fae8d6a6dc7356e7ed8cffa18.tar.bz2 | |
More stray trailing ","s.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | generic/tclCompExpr.c | 4 | ||||
| -rw-r--r-- | generic/tclIORChan.c | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2008-02-26 Joe English <jenglish@users.sourceforge.net> + * generic/tclIORChan.c(enum MethodName), + generic/tclCompExpr.c(enum Marks): More stray trailing ","s + +2008-02-26 Joe English <jenglish@users.sourceforge.net> + * unix/configure.in(socklen_t test): Define socklen_t as "int" if missing, not "unsigned". Use AC_TRY_COMPILE instead of AC_EGREP_HEADER. 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 */ }; /* diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index 78448e2..94950e7 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIORChan.c,v 1.27 2007/12/13 15:23:18 dgp Exp $ + * RCS: @(#) $Id: tclIORChan.c,v 1.28 2008/02/26 21:50:52 jenglish Exp $ */ #include <tclInt.h> @@ -191,7 +191,7 @@ typedef enum { METH_READ, METH_SEEK, METH_WATCH, - METH_WRITE, + METH_WRITE } MethodName; #define FLAG(m) (1 << (m)) |
