summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 48ef1e28ce..9fb2172e57 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -418,6 +418,8 @@ static int get_clause(int *condition)
418 CLAUSE('!', '^', clause_not_begins_with), 418 CLAUSE('!', '^', clause_not_begins_with),
419 CLAUSE('$', ' ', clause_ends_with), 419 CLAUSE('$', ' ', clause_ends_with),
420 CLAUSE('!', '$', clause_not_ends_with), 420 CLAUSE('!', '$', clause_not_ends_with),
421 CLAUSE('@', '^', clause_begins_oneof),
422 CLAUSE('@', '$', clause_ends_oneof),
421 CLAUSE('@', ' ', clause_oneof) 423 CLAUSE('@', ' ', clause_oneof)
422 }; 424 };
423 425