diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2009-12-02 02:37:41 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2009-12-02 02:37:41 +0000 |
commit | 015d78c4b9b569635273b544a05053f5670dad26 (patch) | |
tree | 770cf3470763c4df5b56505e1c978dc1ea7faa22 /gnu/usr.bin/lynx/WWW/Library | |
parent | ae827a94056663d247386503143cad9ab13fc1ad (diff) |
reapply from mainline lynx, fix lost after local update. Okay deraadt.
2008-04-27 (2.8.7dev.9)
* pass a newline after the start of PRE-section in HTGopher.c to force
the first newline between records to be seen and cause the lines to
split (report by Ciprian Dorin Craciun) -TD
Diffstat (limited to 'gnu/usr.bin/lynx/WWW/Library')
-rw-r--r-- | gnu/usr.bin/lynx/WWW/Library/Implementation/HTGopher.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/lynx/WWW/Library/Implementation/HTGopher.c b/gnu/usr.bin/lynx/WWW/Library/Implementation/HTGopher.c index b9bdeb48c79..f9e5a6ecb3b 100644 --- a/gnu/usr.bin/lynx/WWW/Library/Implementation/HTGopher.c +++ b/gnu/usr.bin/lynx/WWW/Library/Implementation/HTGopher.c @@ -244,6 +244,7 @@ static void parse_menu(const char *arg GCC_UNUSED, END(HTML_H1); PUTC('\n'); START(HTML_PRE); + PUTC('\n'); while ((ich = NEXT_CHAR) != EOF) { if (interrupted_in_htgetcharacter) { |