]> git.wh0rd.org Git - nano.git/commitdiff
per Jon Oberheide's patch, fix erroneous debugging statement so that
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 30 Jun 2004 12:28:15 +0000 (12:28 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 30 Jun 2004 12:28:15 +0000 (12:28 +0000)
nano compiles with --enable-debug again

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

ChangeLog
src/winio.c

index 903f068f6450396490dc4f60de1a71490c9c77ab..6e4aeb493ec1c109f5e33510ce7a4b4dd8264e22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@ CVS code -
   parse_rcfile()
        - Have whitespace display default to off instead of on. (Mike
          Frysinger)
+- winio.c:
+  get_control_kbinput()
+       - Fix erroneous debugging statement so that nano compiles with
+         --enable-debug again. (Jon Oberheide)
 
 GNU nano 1.3.3 - 2004.06.28
 - General:
index f7d87e17a9a4ee575788cd200d495c8de6f7cc3a..54d13d7f9958e256a99368fadbcac73cc7d3a0a9 100644 (file)
@@ -550,7 +550,7 @@ int get_control_kbinput(int kbinput)
        retval = kbinput;
 
 #ifdef DEBUG
-    fprintf(stderr, "get_control_kbinput(): kbinput = %d, retval = %d\n", kbinput, ascii_digits, *complete, retval);
+    fprintf(stderr, "get_control_kbinput(): kbinput = %d, retval = %d\n", kbinput, retval);
 #endif
 
     return retval;