In tagmanager/src/tm_parser.c:

> +}
> +
> +
> +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, view it on GitHub, or mute the thread.