diff options
author | ericm <ericm> | 2000-01-11 02:36:15 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-01-11 02:36:15 (GMT) |
commit | 31e465a97f4a03197ce4441aca68c1660cfa5dd4 (patch) | |
tree | 8c5fa1ceff422bd6df0ee9a440509c593d1c5f2b | |
parent | dc39a1177a8d09071dc11143d1540a79907624ca (diff) | |
download | tcl-31e465a97f4a03197ce4441aca68c1660cfa5dd4.zip tcl-31e465a97f4a03197ce4441aca68c1660cfa5dd4.tar.gz tcl-31e465a97f4a03197ce4441aca68c1660cfa5dd4.tar.bz2 |
yacc run
-rw-r--r-- | generic/tclDate.c | 3 | ||||
-rw-r--r-- | generic/tclGetDate.y | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/generic/tclDate.c b/generic/tclDate.c index 1aa954b..d3c7fb5 100644 --- a/generic/tclDate.c +++ b/generic/tclDate.c @@ -20,7 +20,7 @@ static char TclDatesccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93"; * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclDate.c,v 1.8 2000/01/11 02:35:11 ericm Exp $ + * RCS: @(#) $Id: tclDate.c,v 1.9 2000/01/11 02:36:15 ericm Exp $ */ #include "tclInt.h" @@ -842,7 +842,6 @@ TclDatelex() register char *p; char buff[20]; int Count; - int sign; for ( ; ; ) { while (isspace(UCHAR(*TclDateInput))) { diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index b51e0d6..8b28762 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclGetDate.y,v 1.6 2000/01/11 00:51:49 ericm Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.7 2000/01/11 02:36:15 ericm Exp $ */ %{ @@ -857,7 +857,6 @@ yylex() register char *p; char buff[20]; int Count; - int sign; for ( ; ; ) { while (isspace(UCHAR(*yyInput))) { |