gtk-demo: Ignore some lines in info

Ignore lines starting with # in the info comment at
the top of source files. This will be used to add
keywords for search in following commits.
This commit is contained in:
Matthias Clasen 2020-09-13 10:45:03 -04:00
parent cddbc8f1cc
commit fe6f70efe1

View File

@ -581,6 +581,9 @@ load_file (const char *demoname,
while (g_ascii_isspace (*(p + len - 1)))
len--;
if (*p == '#')
break;
if (len > 0)
{
if (in_para)