From 34ba73793327cbaead3a163c04d00a0e49e4b4b9 Mon Sep 17 00:00:00 2001 From: Robert Nordier Date: Fri, 21 May 1999 14:46:52 +0000 Subject: [PATCH] Improve handling of "do ... while" following "else". This change eliminates some incorrect "Unmatched 'else'" errors. --- usr.bin/indent/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/indent/parse.c b/usr.bin/indent/parse.c index f3a4b44cb43..eeeb30acc22 100644 --- a/usr.bin/indent/parse.c +++ b/usr.bin/indent/parse.c @@ -310,7 +310,7 @@ reduce() case whilestmt: /* while (...) on top */ if (ps.p_stack[ps.tos - 1] == dohead) { /* it is termination of a do while */ - ps.p_stack[--ps.tos] = stmt; + ps.tos -= 2; break; } else