diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-07-14 10:55:25 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-07-14 10:55:25 -0400 |
commit | a931ef9bc003edca544d2c40319d2d703b599738 (patch) | |
tree | 448e39a15049924f53b1e95cae018f0c4b67a939 /more.c | |
parent | 114533e512cc94b0b2e04489f70714bf7e52366c (diff) |
correct f/b to scroll by one line
Diffstat (limited to 'more.c')
-rw-r--r-- | more.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,12 +161,12 @@ int more(const char *file) case 'f': case CTRL_F: - scroll(&mf, count, global.lines); + scroll(&mf, count, 1); break; case 'b': case CTRL_B: - scroll(&mf, count, -global.lines); + scroll(&mf, count, -1); break; case ' ': |