mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 03:25:29 +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:
parent
1e7fb38c04
commit
cf8c7f754d
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user