nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit bc6682638b084b21df0a3df75aa511c6cb53c52d
parent 27be74c17ebb751e3b399204dcf53383c0dcdf76
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Tue, 18 Dec 2007 16:51:48 +0000

comment fix


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4207 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/nano.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/nano.c b/src/nano.c @@ -1320,9 +1320,9 @@ void terminal_init(void) /* Slang curses emulation brain damage, part 2: Slang doesn't * implement raw(), nonl(), or noecho() properly, so there's no way * to properly reinitialize the terminal using them. We have to - * disable the special control keys using termios, save the terminal - * state after the first call, and restore it on subsequent - * calls. */ + * disable the special control keys and interpretation of the flow + * control characters using termios, save the terminal state after + * the first call, and restore it on subsequent calls. */ static struct termios newterm; static bool newterm_set = FALSE;