<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Crash while generating font]]></title><description><![CDATA[<p dir="auto">RF keeps freezing while generating font, it gives me this error (below) while the progress bar reads "remove overlap..."</p>
<pre><code class="language-console">Traceback (most recent call last):
  File "/Applications/RoboFont.app/Contents/Resources/lib/python2.7/vanilla/dialogs.py", line 110, in savePanelDidEnd_returnCode_contextInfo_
    self._resultCallback(self._result)
  File "lib/doodleFontWindow.pyc", line 318, in _compileFont
  File "lib/fontObjects/doodleFont.pyc", line 677, in generate
  File "lib/fontObjects/doodleFont.pyc", line 769, in prepareCompile
  File "lib/fontObjects/doodleFont.pyc", line 784, in compileRemoveOverlap
  File "lib/fontObjects/doodleContour.pyc", line 34, in join
IndexError: list index out of range
Traceback (most recent call last):
  File "lib/doodleDelegate.pyc", line 65, in sendEvent_
  File "/Applications/RoboFont.app/Contents/Resources/lib/python2.7/vanilla/dialogs.py", line 110, in savePanelDidEnd_returnCode_contextInfo_
    self._resultCallback(self._result)
  File "lib/doodleFontWindow.pyc", line 318, in _compileFont
  File "lib/fontObjects/doodleFont.pyc", line 677, in generate
  File "lib/fontObjects/doodleFont.pyc", line 769, in prepareCompile
  File "lib/fontObjects/doodleFont.pyc", line 784, in compileRemoveOverlap
  File "lib/fontObjects/doodleContour.pyc", line 34, in join
IndexError: list index out of range
</code></pre>
<p dir="auto">Generating in Area51 works, but gives me this error:</p>
<pre><code class="language-console">makeotfexe [WARNING]  [internal] Feature block seen before any language system statement.  You should place languagesystem statements before any feature definition [features 1]
makeotfexe [WARNING]  Vendor name too short. Padded automatically to 4 characters. [features 1161]
makeotfexe [WARNING]  Major version number not in range 1 .. 255 [features 1165]
</code></pre>
<p dir="auto">Any ideas how to resolve this?</p>
]]></description><link>https://forum.robofont.com/topic/31/crash-while-generating-font</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Jul 2026 18:56:11 GMT</lastBuildDate><atom:link href="https://forum.robofont.com/topic/31.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 04 Oct 2011 19:14:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Crash while generating font on Sun, 31 Dec 2017 21:40:18 GMT]]></title><description><![CDATA[<p dir="auto">RF keeps freezing while generating font, it gives me this error (below) while the progress bar reads "remove overlap..."</p>
<pre><code class="language-console">Traceback (most recent call last):
  File "/Applications/RoboFont.app/Contents/Resources/lib/python2.7/vanilla/dialogs.py", line 110, in savePanelDidEnd_returnCode_contextInfo_
    self._resultCallback(self._result)
  File "lib/doodleFontWindow.pyc", line 318, in _compileFont
  File "lib/fontObjects/doodleFont.pyc", line 677, in generate
  File "lib/fontObjects/doodleFont.pyc", line 769, in prepareCompile
  File "lib/fontObjects/doodleFont.pyc", line 784, in compileRemoveOverlap
  File "lib/fontObjects/doodleContour.pyc", line 34, in join
IndexError: list index out of range
Traceback (most recent call last):
  File "lib/doodleDelegate.pyc", line 65, in sendEvent_
  File "/Applications/RoboFont.app/Contents/Resources/lib/python2.7/vanilla/dialogs.py", line 110, in savePanelDidEnd_returnCode_contextInfo_
    self._resultCallback(self._result)
  File "lib/doodleFontWindow.pyc", line 318, in _compileFont
  File "lib/fontObjects/doodleFont.pyc", line 677, in generate
  File "lib/fontObjects/doodleFont.pyc", line 769, in prepareCompile
  File "lib/fontObjects/doodleFont.pyc", line 784, in compileRemoveOverlap
  File "lib/fontObjects/doodleContour.pyc", line 34, in join
IndexError: list index out of range
</code></pre>
<p dir="auto">Generating in Area51 works, but gives me this error:</p>
<pre><code class="language-console">makeotfexe [WARNING]  [internal] Feature block seen before any language system statement.  You should place languagesystem statements before any feature definition [features 1]
makeotfexe [WARNING]  Vendor name too short. Padded automatically to 4 characters. [features 1161]
makeotfexe [WARNING]  Major version number not in range 1 .. 255 [features 1165]
</code></pre>
<p dir="auto">Any ideas how to resolve this?</p>
]]></description><link>https://forum.robofont.com/post/31</link><guid isPermaLink="true">https://forum.robofont.com/post/31</guid><dc:creator><![CDATA[cj]]></dc:creator><pubDate>Sun, 31 Dec 2017 21:40:18 GMT</pubDate></item><item><title><![CDATA[Reply to Crash while generating font on Sun, 31 Dec 2017 21:41:37 GMT]]></title><description><![CDATA[<p dir="auto">mmm, I guess you have in one of your glyphs an empty, open contour. During generating a font binary RoboFont is closing all open contours.</p>
<p dir="auto">Try running this script looking for open contours and remove them instead of trying to close them, or send me the UFO.</p>
<pre><code class="language-python">f = CurrentFont()

for g in f:
    contoursToRemove = []
    for c in g:
        if c.open:
            ## collect all open contours
            contoursToRemove.append(c)
    
    for c in contoursToRemove:
        ## remove all open contours
        g.removeContour(c)
    
    if contoursToRemove:
        g.update()
</code></pre>
]]></description><link>https://forum.robofont.com/post/461</link><guid isPermaLink="true">https://forum.robofont.com/post/461</guid><dc:creator><![CDATA[frederik]]></dc:creator><pubDate>Sun, 31 Dec 2017 21:41:37 GMT</pubDate></item><item><title><![CDATA[Reply to Crash while generating font on Wed, 05 Oct 2011 13:54:40 GMT]]></title><description><![CDATA[<p dir="auto">Indeed, there was a stray single point on top of another point. That script worked great, thank you.</p>
]]></description><link>https://forum.robofont.com/post/462</link><guid isPermaLink="true">https://forum.robofont.com/post/462</guid><dc:creator><![CDATA[cj]]></dc:creator><pubDate>Wed, 05 Oct 2011 13:54:40 GMT</pubDate></item></channel></rss>