Remove not needed wrapper function since now we use a struct to set attrs

This commit is contained in:
Kovid Goyal
2022-12-23 13:50:55 +05:30
parent 61ceb12e07
commit 307ce1cf87
3 changed files with 2 additions and 8 deletions

View File

@@ -112,7 +112,6 @@ void linebuf_rewrap(LineBuf *self, LineBuf *other, index_type *, index_type *, H
void linebuf_mark_line_dirty(LineBuf *self, index_type y);
void linebuf_clear_attrs_and_dirty(LineBuf *self, index_type y);
void linebuf_mark_line_clean(LineBuf *self, index_type y);
void linebuf_mark_line_as_not_continued(LineBuf *self, index_type y);
unsigned int linebuf_char_width_at(LineBuf *self, index_type x, index_type y);
void linebuf_refresh_sprite_positions(LineBuf *self);
void historybuf_add_line(HistoryBuf *self, const Line *line, ANSIBuf*);