From 03cff6b7fd5438c5b532d3d63261ebe993cb2653 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 16 Aug 2020 15:57:16 -0400 Subject: [PATCH] USAGE: update ncplane_putsimple_yx() definition --- USAGE.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/USAGE.md b/USAGE.md index a3a7aa117..ae2319ebe 100644 --- a/USAGE.md +++ b/USAGE.md @@ -902,9 +902,6 @@ ncplane_putc(struct ncplane* n, const cell* c){ static inline int ncplane_putsimple_yx(struct ncplane* n, int y, int x, char c){ cell ce = CELL_INITIALIZER(c, ncplane_attr(n), ncplane_channels(n)); - if(!cell_simple_p(&ce)){ - return -1; - } return ncplane_putc_yx(n, y, x, &ce); }