From 194b76a9d359e17236d87cfd204b8b0e19bbba06 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 11 Dec 2019 00:47:46 -0500 Subject: [PATCH] input: update comment, no longer driven through cell --- README.md | 9 ++++----- include/notcurses.h | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8beb67d5c..8c267b528 100644 --- a/README.md +++ b/README.md @@ -179,11 +179,10 @@ returned at a time (as opposed to an entire EGC). ```c // All input is currently taken from stdin, though this will likely change. We // attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire -// Extended Grapheme Cluster (despite use of the cell object, which encodes an -// entire EGC). It is also possible that we will read a special keypress, i.e. -// anything that doesn't correspond to a Unicode codepoint (e.g. arrow keys, -// function keys, screen resize events, etc.). These are mapped into Unicode's -// Supplementary Private Use Area-B, starting at U+100000. +// Extended Grapheme Cluster. It is also possible that we will read a special +// keypress, i.e. anything that doesn't correspond to a Unicode codepoint (e.g. +// arrow keys, function keys, screen resize events, etc.). These are mapped +// into Unicode's Supplementary Private Use Area-B, starting at U+100000. // // notcurses_getc() and notcurses_getc_nblock() are both nonblocking. // notcurses_getc_blocking() blocks until a codepoint or special key is read, diff --git a/include/notcurses.h b/include/notcurses.h index a4fbcc6a6..0c6245b0c 100644 --- a/include/notcurses.h +++ b/include/notcurses.h @@ -138,11 +138,10 @@ API int notcurses_render(struct notcurses* nc); // All input is currently taken from stdin, though this will likely change. We // attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire -// Extended Grapheme Cluster (despite use of the cell object, which encodes an -// entire EGC). It is also possible that we will read a special keypress, i.e. -// anything that doesn't correspond to a Unicode codepoint (e.g. arrow keys, -// function keys, screen resize events, etc.). These are mapped into Unicode's -// Supplementary Private Use Area-B, starting at U+100000. +// Extended Grapheme Cluster. It is also possible that we will read a special +// keypress, i.e. anything that doesn't correspond to a Unicode codepoint (e.g. +// arrow keys, function keys, screen resize events, etc.). These are mapped +// into Unicode's Supplementary Private Use Area-B, starting at U+100000. // // notcurses_getc() and notcurses_getc_nblock() are both nonblocking. // notcurses_getc_blocking() blocks until a codepoint or special key is read,