From e6d1cbb2b41505050d92be4fd9c88caae59f783b Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 28 Dec 2020 09:44:44 -0500 Subject: [PATCH] clean up notcurses_input.3 --- doc/man/man3/notcurses_input.3.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/doc/man/man3/notcurses_input.3.md b/doc/man/man3/notcurses_input.3.md index 117105d7c..14a16c4de 100644 --- a/doc/man/man3/notcurses_input.3.md +++ b/doc/man/man3/notcurses_input.3.md @@ -55,8 +55,8 @@ mapped into the [Supplementary Private Use Area-B](https://unicode.org/charts/PD Unicode characters are returned directly as UCS-32, one codepoint at a time. notcurses takes its keyboard input from **stdin**, which will be placed into -non-blocking mode for the duration of operation. The terminal is put into raw -mode (see **cfmakeraw(3)**), and thus keys are received without line-buffering. +non-blocking mode for the duration of operation. The terminal is put into +non-canonical mode (see **termios(3)**), and thus keys are received without line-buffering. notcurses maintains its own buffer of input characters, which it will attempt to fill whenever it reads. @@ -82,8 +82,6 @@ represent the same input (though not necessarily the same input event). conversions are enabled by default. **notcurses_linesigs_enable** undoes this action, but signals in the interim are permanently lost. -**int notcurses_linesigs_enable(struct notcurses* ***n***);** - ## Mice For mouse events, the additional fields **y** and **x** are set. These fields @@ -170,7 +168,6 @@ registers as **NCKEY_ENTER**. This will likely change in the future. # SEE ALSO **poll(2)**, -**cfmakeraw(3)**, **notcurses(3)**, **notcurses_refresh(3)**, **notcurses_render(3)**,