Commit cff55583 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

per Jon Oberheide's patch, fix erroneous debugging statement so that

nano compiles with --enable-debug again


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1832 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 1 deletion
+5 -1
......@@ -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:
......
......@@ -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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment