summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index f9542821d8..90fa617aad 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -244,6 +244,7 @@ static int get_clause(int *condition)
244 MATCH(condition, buf, "!^", clause_not_begins_with); 244 MATCH(condition, buf, "!^", clause_not_begins_with);
245 MATCH(condition, buf, "$", clause_ends_with); 245 MATCH(condition, buf, "$", clause_ends_with);
246 MATCH(condition, buf, "!$", clause_not_ends_with); 246 MATCH(condition, buf, "!$", clause_not_ends_with);
247 MATCH(condition, buf, "@", clause_oneof);
247 248
248 return 0; 249 return 0;
249} 250}