PERFORCE change 63949 for review
John Baldwin
jhb at FreeBSD.org
Fri Oct 29 14:20:36 PDT 2004
http://perforce.freebsd.org/chv.cgi?CH=63949
Change 63949 by jhb at jhb_slimer on 2004/10/29 21:19:55
Force whitespaces out before doing a return or newline. This should
fix the fact that the extra printf I was doing to clear the
--More-- prompt wasn't working.
Affected files ...
.. //depot/projects/smpng/sys/ddb/db_output.c#13 edit
Differences ...
==== //depot/projects/smpng/sys/ddb/db_output.c#13 (text+ko) ====
@@ -144,6 +144,7 @@
}
else if (c == '\n') {
/* Newline */
+ db_force_whitespace();
cnputc(c);
db_output_position = 0;
db_last_non_space = 0;
@@ -158,6 +159,7 @@
}
else if (c == '\r') {
/* Return */
+ db_force_whitespace();
cnputc(c);
db_output_position = 0;
db_last_non_space = 0;
More information about the p4-projects
mailing list