changes values from:
0, 1, 2
to:
1, 2, 4
before, GTK_SOURCE_SEARCH_VISIBLE_ONLY was 0,
and as the the enum values are used as bit-field,
checking for this bit would always return in _not set_:
visible_only = (flags & GTK_SOURCE_SEARCH_VISIBLE_ONLY) != 0;