aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-06-30 21:13:06 +0100
committerRon Yorston <rmy@pobox.com>2014-06-30 21:13:06 +0100
commit099e8b6438345baae560a629d548af07a8c3125c (patch)
tree71b5600b22b0019af675e4a991394ce32c8207c5 /editors
parente19594cc6e49e78fa50a654f15cf9a04e77d054a (diff)
parent184b2669175e562d58894e22f6320cebf3316c25 (diff)
downloadbusybox-w32-099e8b6438345baae560a629d548af07a8c3125c.tar.gz
busybox-w32-099e8b6438345baae560a629d548af07a8c3125c.tar.bz2
busybox-w32-099e8b6438345baae560a629d548af07a8c3125c.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 3d2183e5e..5b8e484a7 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -1544,12 +1544,14 @@ static void chain_group(void)
1544 debug_printf_parse("%s: OC_BREAK\n", __func__); 1544 debug_printf_parse("%s: OC_BREAK\n", __func__);
1545 n = chain_node(OC_EXEC); 1545 n = chain_node(OC_EXEC);
1546 n->a.n = break_ptr; 1546 n->a.n = break_ptr;
1547 chain_expr(t_info);
1547 break; 1548 break;
1548 1549
1549 case OC_CONTINUE: 1550 case OC_CONTINUE:
1550 debug_printf_parse("%s: OC_CONTINUE\n", __func__); 1551 debug_printf_parse("%s: OC_CONTINUE\n", __func__);
1551 n = chain_node(OC_EXEC); 1552 n = chain_node(OC_EXEC);
1552 n->a.n = continue_ptr; 1553 n->a.n = continue_ptr;
1554 chain_expr(t_info);
1553 break; 1555 break;
1554 1556
1555 /* delete, next, nextfile, return, exit */ 1557 /* delete, next, nextfile, return, exit */