box-drawing: remove LOG_WARN from U+259x range - all codepoints have been implemented

This commit is contained in:
Daniel Eklöf 2020-12-29 11:37:20 +01:00
parent 705cb9cfb0
commit 4ac33f4f4e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1505,13 +1505,10 @@ draw_glyph(wchar_t wc, uint8_t *buf, int width, int height, int stride, int dpi)
case 0x259d: draw_quadrant_upper_right(buf, width, height, stride, dpi); break;
case 0x259e: draw_quadrant_upper_right_and_lower_left(buf, width, height, stride, dpi); break;
case 0x259f: draw_quadrant_upper_right_and_lower_left_and_lower_right(buf, width, height, stride, dpi); break;
LOG_WARN("unimplemented: box drawing: wc=%04lx", (long)wc);
break;
}
}
struct fcft_glyph * COLD
struct fcft_glyph * COLDx
box_drawing(const struct terminal *term, wchar_t wc)
{
int width = term->cell_width;