On 31 Jan, Alejandro Aguilar Sierra wrote:
> Hello,
>
> In this message I'm sending a tar file that includes a patch (generated
> with cvs diff) and some new files:
Ok. I commited this now. Just one point:
typedef enum {
ARROW_NONE,
ARROW_LINES,
+ ARROW_HALF_HEAD,
ARROW_HOLLOW_TRIANGLE,
ARROW_FILLED_TRIANGLE,
ARROW_HOLLOW_DIAMOND,
Don't add the new enum in the middle, that changes the value of all
later enums. This leads to problem when loading old files which
contains just the enum value for selecting arrow.
/ Alex