From f5a0c1920bd31df591ae8f058d24071179ce8209 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 24 Nov 2019 21:43:53 -0500 Subject: [PATCH] EGC, not wchar_t --- include/notcurses.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/notcurses.h b/include/notcurses.h index 903b9b4d6..72274c721 100644 --- a/include/notcurses.h +++ b/include/notcurses.h @@ -14,7 +14,7 @@ extern "C" { // Get a human-readable string describing the running notcurses version. const char* notcurses_version(void); -struct cell; // a coordinate on an ncplane: wchar_t(s) and styling +struct cell; // a coordinate on an ncplane: an EGC plus styling struct ncplane; // a drawable notcurses surface, composed of cells struct notcurses; // notcurses state for a given terminal, composed of ncplanes @@ -84,7 +84,6 @@ int notcurses_stop(struct notcurses* nc); // Make the physical screen match the virtual screen. Changes made to the // virtual screen (i.e. most other calls) will not be visible until after a // successful call to notcurses_render(). -int notcurses_check(struct notcurses* nc); int notcurses_render(struct notcurses* nc); // Refresh our idea of the terminal's dimensions, reshaping the standard plane