Remove unised variables.
Signed-off-by: Philipp Hachtmann <hachti@hachti.de>
struct point pen_pos={0,0,1};
- double character_angle=0;
- double character_size=40;
-
struct path * first_path=NULL;
struct path * current_path=NULL;
pen_pos.x=0;
pen_pos.y=0;
pen_pos.valid=1;
- character_angle=0;
- character_size=40;
pen_state=up;
break;
struct path *result = NULL;
struct path *result_last;
struct path *cur, *best;
- int i;
-
+#ifdef DEBUG
+ int i = 0;
+#endif
+
link_reverse(input_list);
- // DBG("link_reverse done\n");
+ DBG("link_reverse done\n");
- i=0;
+#ifdef DEBUG
for (cur = input_list; cur; cur = cur->next)
DBG("%4i Input Path (%5.2f,%5.2f) -> (%5.2f,%5.2f)\n",
i++,
cur->plot_end_point->x,
cur->plot_end_point->y
);
+#endif
while(input_list) {
best = NULL;