crash

If you're having trouble using Context Free or don't understand the language, ask for help here.

Moderators: MtnViewJohn, chris, mtnviewmark

Post Reply
User avatar
sicvolo
Posts: 8
Joined: Sat May 03, 2008 12:08 am

crash

Post by sicvolo »

CFA 2.2beta2 (v16) crashes under windows running this

Code: Select all

startshape dot
path dot { 
5* {r 72} {
MOVETO {x 0 y 0}
LINETO {x .5 y 0}
} 
STROKE {}
}
But works ok with this:

Code: Select all

startshape dot

path dot { 
MOVETO {x 0 y 0}
5* {r 72} {
MOVETO {x 0 y 0}
LINETO {x .5 y 0}
} 
STROKE {}
}
1. There should not be a need to specify the first start point, it's 0,0 right?
2. Showing an error message would be a bit better than crashing.

User avatar
MtnViewJohn
Site Admin
Posts: 882
Joined: Fri May 06, 2005 2:26 pm
Location: Mountain View, California
Contact:

Re: crash

Post by MtnViewJohn »

sicvolo wrote:1. There should not be a need to specify the first start point, it's 0,0 right?
2. Showing an error message would be a bit better than crashing.
Yes and yes. I will get right on it.

Post Reply