Hi,
I find a bug in my last command line patch.
I forget to print a new line when resuming printing after "more>"
prompt.
Sonic Zhang
----------------------------------------------------
--- linux-kdb/kdb/kdb_io.c Fri Dec 6 12:18:23 2002
+++ linux-kdb-cmdline/kdb/kdb_io.c Fri Dec 6 12:19:07 2002
@@ -249,6 +249,7 @@
kdb_nextline = 1; /* Really set output line 1 */
+ kdb_printf("\n");
if ((buf1[0] == 'q') || (buf1[0] == 'Q'))
do_longjmp = 1;
----------------------------------------------------
