summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-12 20:34:27 -0500
committerJune McEnroe <june@causal.agency>2021-01-12 20:34:27 -0500
commita34bb3c52fb4ee039b05434189f58367aece20c7 (patch)
treea663f1188720cd5a7ec9de699d6e8ed79bd6a72f
parentProcess htagml file line by line (diff)
downloadsrc-a34bb3c52fb4ee039b05434189f58367aece20c7.tar.gz
src-a34bb3c52fb4ee039b05434189f58367aece20c7.zip
Prevent matching the same tag twice
-rw-r--r--bin/htagml.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/htagml.c b/bin/htagml.c
index d8825a65..1c8c683f 100644
--- a/bin/htagml.c
+++ b/bin/htagml.c
@@ -128,6 +128,7 @@ int main(int argc, char *argv[]) {
 				if (regexec(&tags[i].regex, buf, 0, NULL, 0)) continue;
 			}
 			tag = &tags[i];
+			tag->num = num;
 			break;
 		}
 		if (!tag) {