The previous commit removed a { } block, and unintendedly introduced a

C99ism (inlined variable declaration), which hurts when pdksh is used
for bootstrapping pkgsrc. Move the two declarations to the beginning
of the block.
This commit is contained in:
hauke 2011-01-23 17:15:15 +00:00
parent 69c247a5bf
commit 2a758472b6
1 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lex.c,v 1.13 2008/10/27 19:52:28 apb Exp $ */
/* $NetBSD: lex.c,v 1.14 2011/01/23 17:15:15 hauke Exp $ */
/*
* lexical analysis and source input
@ -6,7 +6,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: lex.c,v 1.13 2008/10/27 19:52:28 apb Exp $");
__RCSID("$NetBSD: lex.c,v 1.14 2011/01/23 17:15:15 hauke Exp $");
#endif
@ -245,6 +245,9 @@ yylex(cf)
Subst:
switch (c) {
Lex_state *s;
Lex_state *base;
case '\\':
c = getsc();
switch (c) {
@ -341,8 +344,8 @@ yylex(cf)
* posix mode was not in effect.
*/
statep->ls_sbquote.indquotes = 0;
Lex_state *s = statep;
Lex_state *base = state_info.base;
s = statep;
base = state_info.base;
while (1) {
for (; s != base; s--) {
if (s->ls_state == SDQUOTE) {