mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-06 07:15:30 -04:00
sixel: rename: purge_at_cursor() -> delete_at_cursor()
This commit is contained in:
parent
3a24777e45
commit
86d640ef71
3 changed files with 4 additions and 4 deletions
4
sixel.c
4
sixel.c
|
|
@ -53,7 +53,7 @@ sixel_destroy(struct sixel *sixel)
|
|||
}
|
||||
|
||||
void
|
||||
sixel_purge_at_cursor(struct terminal *term)
|
||||
sixel_delete_at_cursor(struct terminal *term)
|
||||
{
|
||||
const int row = term->grid->offset + term->cursor.point.row;
|
||||
|
||||
|
|
@ -74,7 +74,7 @@ sixel_unhook(struct terminal *term)
|
|||
free(term->sixel.palette);
|
||||
term->sixel.palette = NULL;
|
||||
|
||||
sixel_purge_at_cursor(term);
|
||||
sixel_delete_at_cursor(term);
|
||||
|
||||
struct sixel image = {
|
||||
.data = term->sixel.image.data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue