1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +02:00

22558: declaration after statement

This commit is contained in:
Peter Stephenson 2006-07-26 13:19:25 +00:00
parent 09bc7ee2b5
commit 44e2e5979c
2 changed files with 5 additions and 1 deletions

@ -1,3 +1,7 @@
2006-07-26 Peter Stephenson <pws@csr.com>
* 22558: Src/math.c: declaration after statement.
2006-07-25 Peter Stephenson <pws@csr.com>
* 22557: Doc/Zsh/options.yo, Misc/globtests, Src/options.c,

@ -264,8 +264,8 @@ static int
zzlex(void)
{
int cct = 0;
yyval.type = MN_INTEGER;
char *ie;
yyval.type = MN_INTEGER;
for (;; cct = 0)
switch (*ptr++) {