aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/parse.c b/src/parse.c
index fcbf7e6b..f5a9df88 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -799,12 +799,8 @@ PARSER(parse_table) {
}
PARSER(parse_set) {
- const char *start = pos;
- if (match(&pos, "||"))
- return NewAST(ctx->file, start, pos, Set);
-
if (!match(&pos, "|")) return NULL;
-
+ const char *start = pos;
whitespace(&pos);
ast_list_t *items = NULL;