diff options
author | nicm <nicm> | 2015-11-12 14:50:57 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-12 14:50:57 +0000 |
commit | f2d03f4fddddbdbc96566c55f92718c1f4319b33 (patch) | |
tree | a6c4f329aa2f1d6c8069375e6b4e6a3539637e7e /grid.c | |
parent | a209ea3953ba16742f6f6bb19b76ffdb1200960e (diff) | |
download | rtmux-f2d03f4fddddbdbc96566c55f92718c1f4319b33.tar.gz rtmux-f2d03f4fddddbdbc96566c55f92718c1f4319b33.tar.bz2 rtmux-f2d03f4fddddbdbc96566c55f92718c1f4319b33.zip |
grid_put_utf8 is unused, remove it.
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -42,10 +42,6 @@ const struct grid_cell grid_default_cell = { 0, 0, 8, 8, (1 << 4) | 1, " " }; memcpy(&gd->linedata[py].celldata[px], \ gc, sizeof gd->linedata[py].celldata[px]); \ } while (0) -#define grid_put_utf8(gd, px, py, gc) do { \ - memcpy(&gd->linedata[py].utf8data[px], \ - gc, sizeof gd->linedata[py].utf8data[px]); \ -} while (0) int grid_check_y(struct grid *, u_int); |