> +}
> +
> +
> +gchar tm_parser_get_tag_kind(TMTagType type, TMParserType lang)
> +{
> +     TMParserMap *map = &parser_map[lang];
> +     guint i;
> +
> +     for (i = 0; i < map->size; i++)
> +     {
> +             TMParserMapEntry *entry = &map->entries[i];
> +
> +             if (entry->type == type)
> +                     return entry->kind;
> +     }
> +     return '-';

shouldn't this rather be something like `0`?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/957/files/6e89ee5ebef888e5d07407d33ffb4d455831e752#r66289722

Reply via email to