diff options
author | nijtmans <nijtmans> | 2010-03-04 23:16:56 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-03-04 23:16:56 (GMT) |
commit | f9102947da376b595e386d9bc0e443bf45b39110 (patch) | |
tree | a69369dbc293390210418d46247d39106d904d37 | |
parent | ead00d5d7d7afa8be16eacf5a93a931c84b6749a (diff) | |
download | tcl-f9102947da376b595e386d9bc0e443bf45b39110.zip tcl-f9102947da376b595e386d9bc0e443bf45b39110.tar.gz tcl-f9102947da376b595e386d9bc0e443bf45b39110.tar.bz2 |
3 unnecessary MODULE_SCOPE symbols
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | generic/tclDate.c | 4 | ||||
-rw-r--r-- | generic/tclGetDate.y | 6 |
3 files changed, 4 insertions, 10 deletions
@@ -1,5 +1,7 @@ -2010-03-03 Jan Nijtmans <nijtmans@users.sf.net> +2010-03-04 Jan Nijtmans <nijtmans@users.sf.net> + * generic/tclGetDate.y 3 unnecessary MODULE_SCOPE + * generic/tclDate.c symbols * generic/tclStubLib.c Split tommath stub lib * generic/tclTomMathStubLib.c in separate file. * win/makefile.bc diff --git a/generic/tclDate.c b/generic/tclDate.c index f873e3f..13033f0 100644 --- a/generic/tclDate.c +++ b/generic/tclDate.c @@ -2292,10 +2292,6 @@ yyreturn: -MODULE_SCOPE int yychar; -MODULE_SCOPE YYSTYPE yylval; -MODULE_SCOPE int yynerrs; - /* * Month and day table. */ diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index c2498b2..a27179c 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -13,7 +13,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.44 2010/02/21 20:09:37 nijtmans Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.45 2010/03/04 23:16:56 nijtmans Exp $ */ %parse-param {DateInfo* info} @@ -504,10 +504,6 @@ o_merid : /* NULL */ { ; %% -MODULE_SCOPE int yychar; -MODULE_SCOPE YYSTYPE yylval; -MODULE_SCOPE int yynerrs; - /* * Month and day table. */ |