1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 05:38:06 +02:00

tools/: rename free_edit to free_edits

Makes it clearer that it's not about freeing just a single edit record.
This commit is contained in:
Werner Almesberger 2012-11-01 19:06:58 -03:00
parent 1e7fb38c04
commit cf8c7f754d
3 changed files with 4 additions and 4 deletions

View File

@ -186,7 +186,7 @@ static void *generate(const char *path)
fprintf(stderr, "%s\n", err);
exit(1);
}
free_edit(edits);
free_edits(edits);
return res;
}

View File

@ -321,7 +321,7 @@ struct edit *text2edit(const char *s, const char **error)
return edits;
if (error)
*error = err;
free_edit(edits);
free_edits(edits);
return NULL;
}
@ -329,7 +329,7 @@ struct edit *text2edit(const char *s, const char **error)
/* ----- Free edit list ---------------------------------------------------- */
void free_edit(struct edit *e)
void free_edits(struct edit *e)
{
struct edit *next;

View File

@ -70,7 +70,7 @@ int char_height(const struct font *font, char c);
struct edit *text2edit(const char *s, const char **error);
char *edit2text(const struct edit *e);
void free_edit(struct edit *e);
void free_edits(struct edit *e);
void add_font_dir(const char *name);