diff options
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | src/GridText.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES index d8f23f87..8b539e40 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.1040 2020/02/24 00:59:22 tom Exp $ +-- $LynxId: CHANGES,v 1.1041 2020/02/25 01:47:59 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2020-02-23 (2.9.0dev.5) +2020-02-24 (2.9.0dev.5) +* amend workaround in 2.8.6dev.19 for "-notitle" option, fixing an off-by-one + display (report by Keith Bowes) -TD * add/adapt changes from Keith Bowes' github: * updated eo.po * add "-update_term_title" option diff --git a/src/GridText.c b/src/GridText.c index 44825b5b..46cbb51f 100644 --- a/src/GridText.c +++ b/src/GridText.c @@ -1,5 +1,5 @@ /* - * $LynxId: GridText.c,v 1.324 2020/02/24 00:30:01 tom Exp $ + * $LynxId: GridText.c,v 1.325 2020/02/25 01:41:00 tom Exp $ * * Character grid hypertext object * =============================== @@ -1384,7 +1384,7 @@ static int display_line(HTLine *line, * the output line wraps, foiling our attempt to just use newlines to * advance to the next page. */ - LYmove(scrline + TITLE_LINES - 1, 0); + LYmove(scrline + (no_title ? 0 : TITLE_LINES) - 1, 0); #endif /* |