In tagmanager/src/tm_parser.c:

> +{
> +	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 '-';
> +}
> +
> +
> +void tm_parser_verify_type_mappings(void)

and this should be run during make check instead of when running Geany itself. I've got a working version of this, will clean it up and show it soon (hopefully tomorrow).


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub