diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 20:34:27 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 20:34:27 -0500 |
commit | 355a9768b1b62c58d5c2d943159b1d470adf1e0a (patch) | |
tree | a8dd5f81714350de95c98378211976cea21ac06e | |
parent | Process htagml file line by line (diff) | |
download | src-355a9768b1b62c58d5c2d943159b1d470adf1e0a.tar.gz src-355a9768b1b62c58d5c2d943159b1d470adf1e0a.zip |
Prevent matching the same tag twice
Diffstat (limited to '')
-rw-r--r-- | bin/htagml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/htagml.c b/bin/htagml.c index c1e75dd9..b72b5e39 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) { |