From ae06879193a54b861c109adf6eff712232b4756d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 3 Nov 2017 13:34:26 +0530 Subject: [PATCH] Mark unused pending implementation --- kitty/core_text.m | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/core_text.m b/kitty/core_text.m index a12784685..b389bf06e 100644 --- a/kitty/core_text.m +++ b/kitty/core_text.m @@ -293,6 +293,7 @@ set_size_for_face(PyObject *self, float pt_sz, float xdpi, float ydpi) { bool render_glyphs_in_cell(PyObject *f, bool bold, bool italic, hb_glyph_info_t *info, hb_glyph_position_t *positions, unsigned int num_glyphs, uint8_t *canvas, unsigned int cell_width, unsigned int cell_height, unsigned int num_cells, unsigned int baseline) { // TODO: Implement this + (void)(f); (void)(bold); (void)italic; (void)info; (void)positions; (void)num_glyphs; (void)num_glyphs; (void)canvas; (void)cell_width; (void)cell_height; (void)num_cells; (void)baseline; return true; }