From 2b77a3696e74eb9e0414bd3895fa6352f4572f25 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 6 Sep 2015 21:23:44 -0700 Subject: linenoise: STDIN_FILENO used as pointer. * linenoise/linenoise.c (lino_print_codes): Pass l into enable_raw_mode rather than STDIN_FILENO. Read from l->ifd rather than STDIN_FILENO. since this is a debugging function, I'm leaving the printfs to stdio alone. --- linenoise/linenoise.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linenoise') diff --git a/linenoise/linenoise.c b/linenoise/linenoise.c index c28e7dd2..5ebd2b62 100644 --- a/linenoise/linenoise.c +++ b/linenoise/linenoise.c @@ -971,13 +971,13 @@ void lino_print_keycodes(lino_t *l) { printf("Linenoise key codes debugging mode.\n" "Press keys to see scan codes. Type 'quit' at any time to exit.\n"); - if (enable_raw_mode(STDIN_FILENO) == -1) return; + if (enable_raw_mode(l) == -1) return; memset(quit,' ',4); while(1) { char c; int nread; - nread = read(STDIN_FILENO,&c,1); + nread = read(l->ifd,&c,1); if (nread <= 0) continue; memmove(quit,quit+1,sizeof(quit)-1); /* shift string to left. */ quit[sizeof(quit)-1] = c; /* Insert current char on the right. */ -- cgit v1.2.3