diff options
Diffstat (limited to '')
-rw-r--r-- | bin/htagml.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/htagml.c b/bin/htagml.c index 033f717a..1f547be6 100644 --- a/bin/htagml.c +++ b/bin/htagml.c @@ -77,6 +77,10 @@ static char *hstrstr(const char *haystack, const char *needle) { return NULL; } +static int isident(int c) { + return isalnum(c) || c == '_'; +} + int main(int argc, char *argv[]) { bool pre = false; bool pipe = false; @@ -190,7 +194,10 @@ int main(int argc, char *argv[]) { size_t mlen = strlen(tag); char *match = (pipe ? hstrstr : strstr)(buf, tag); - while (match > buf && isalnum(match[-1])) { + while ( + match && + ((match > buf && isident(match[-1])) || isident(match[mlen])) + ) { match = (pipe ? hstrstr : strstr)(&match[mlen], tag); } if (!match && tag[0] == 'M') { |