diff options
-rw-r--r-- | bfs.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -467,6 +467,10 @@ static expression *parse_term(parser_state *state) { break; } + if (strcmp(arg, "-o") == 0 || strcmp(arg, "-or") == 0 || strcmp(arg, ",") == 0) { + break; + } + if (strcmp(arg, "-a") == 0 || strcmp(arg, "-and") == 0) { ++state->i; } |