diff options
| author | Paul Saab <ps@FreeBSD.org> | 2000-05-23 08:18:52 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2000-05-23 08:18:52 +0000 |
| commit | ea1e4cec25454dcb7b58608bae6599e5b19e94b0 (patch) | |
| tree | d66a772556a8e94816ee950944dcf81371415126 | |
| parent | c586c5db076160e82b2f7b8e7813340caceac229 (diff) | |
Notes
| -rw-r--r-- | contrib/less/forwback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/less/forwback.c b/contrib/less/forwback.c index d8071aaf26e8..e110507fa441 100644 --- a/contrib/less/forwback.c +++ b/contrib/less/forwback.c @@ -233,7 +233,8 @@ forw(n, pos, force, only_last, nblank) * start the display after the beginning of the file, * and it is not appropriate to squish in that case. */ - if (first_time && pos == NULL_POSITION && !top_scroll && + if ((first_time || more_mode) && + pos == NULL_POSITION && !top_scroll && #if TAGS tagoption == NULL && #endif |
