__doc__ = '''Marks glyphs that have components.'''

from FL import *


for g in fl.font.glyphs:
	if len( g.components) > 0:
		if len(g.nodes) == 0:
			g.mark = 25


fl.UpdateFont(-1)