From fa541af5778a78e148d3e4a43da7f0d34513ed82 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 1 Oct 2012 18:52:58 +0200 Subject: implement "continue" RainerScript statement --- grammar/rainerscript.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'grammar/rainerscript.c') diff --git a/grammar/rainerscript.c b/grammar/rainerscript.c index a72b4155..7e75326c 100644 --- a/grammar/rainerscript.c +++ b/grammar/rainerscript.c @@ -2129,7 +2129,6 @@ struct cnfstmt * cnfstmtNewCall(es_str_t *name) { struct cnfstmt* cnfstmt; -dbgprintf("DDDD: got CALL\n"); if((cnfstmt = cnfstmtNew(S_CALL)) != NULL) { cnfstmt->d.s_call.name = name; } @@ -2146,6 +2145,12 @@ cnfstmtNewUnset(char *var) return cnfstmt; } +struct cnfstmt * +cnfstmtNewContinue(void) +{ + return cnfstmtNew(S_NOP); +} + struct cnfstmt * cnfstmtNewPRIFILT(char *prifilt, struct cnfstmt *t_then) { -- cgit v1.2.3