vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| > > Another important part of this change, which I would like feedback on, > > i386, vanilla wscons after login: > perl -e 'print "."x80' | more > displays one blank line too much. > > i386, in screen-4.0.2 under wscons: > perl -e 'print( (("X"x81)."\n")x5 )' > looks funny. The following diff should fix the first problem. As for the second, I have no fix for it yet. Miod Index: wsemul_vt100.c ================================================== ================= RCS file: /cvs/src/sys/dev/wscons/wsemul_vt100.c,v retrieving revision 1.13 diff -u -p -r1.13 wsemul_vt100.c --- wsemul_vt100.c 2006/08/17 06:27:04 1.13 +++ wsemul_vt100.c 2006/09/20 21:06:00 @@ -1015,7 +1015,7 @@ wsemul_vt100_output(cookie, data, count, } break; default: - if (++pos >= NCOLS) { + if (pos++ >= NCOLS) { pos = 0; curchar = ASCII_LF; } |