]> git.wh0rd.org Git - nano.git/commitdiff
fix debugging output in get_verbatim_kbinput()
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 15 Apr 2004 06:15:55 +0000 (06:15 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 15 Apr 2004 06:15:55 +0000 (06:15 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1711 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 73f0b38438bf92daa9b9606be77f1337772d94ee..1443e28f58b507f2da3d5c5c310ae645e4a748a0 100644 (file)
--- 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:
index e92a4268049bf7b4867dd3576bc947f43eb57e71..e493ffb80ec55c492ea559e12aeb30c188799474 100644 (file)
@@ -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