mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2025-04-21 12:27:27 +03: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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user