commit e1e7cb250e24ce6390059f9eafa009e75319ff16
parent edc1ea4c16505f86eebd297f722993127df31f17
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 15 Apr 2004 06:15:55 +0000
fix debugging output in get_verbatim_kbinput()
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1711 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -27,6 +27,11 @@ CVS code -
- Rename to nstristr() to avoid a potential conflict with an
existing stristr() function, and move up to just after
nstrnicmp(). (DLR) David Benbennick: Tweak for efficiency.
+- winio.c:
+ get_verbatim_kbinput()
+ - Refactor the output in the DEBUG #ifdef. It didn't work
+ properly ever since this function was changed to use an int*
+ instead of a char*. (DLR)
GNU nano 1.3.2 - 2004.03.31
- General:
diff --git a/src/winio.c b/src/winio.c
@@ -96,10 +96,16 @@ int *get_verbatim_kbinput(WINDOW *win, int *kbinput_len, int
verbatim_kbinput[0] = get_ascii_kbinput(win, kbinput);
else {
nodelay(win, TRUE);
+#ifdef DEBUG
+ fprintf(stderr, "get_verbatim_kbinput(): kbinput = %d\n", kbinput);
+#endif
while ((kbinput = wgetch(win)) != ERR) {
(*kbinput_len)++;
verbatim_kbinput = realloc(verbatim_kbinput, *kbinput_len * sizeof(int));
verbatim_kbinput[*kbinput_len - 1] = kbinput;
+#ifdef DEBUG
+ fprintf(stderr, "get_verbatim_kbinput(): kbinput = %d\n", kbinput);
+#endif
}
nodelay(win, FALSE);
}
@@ -111,10 +117,6 @@ int *get_verbatim_kbinput(WINDOW *win, int *kbinput_len, int
#endif
keypad(win, TRUE);
-#ifdef DEBUG
- fprintf(stderr, "get_verbatim_kbinput(): verbatim_kbinput = %s\n", verbatim_kbinput);
-#endif
-
#ifndef NANO_SMALL
allow_pending_sigwinch(FALSE);
#endif