diff options
Diffstat (limited to 'nav.c')
-rw-r--r-- | nav.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nav.c b/nav.c index 5e5d8ea..18b21db 100644 --- a/nav.c +++ b/nav.c @@ -5,6 +5,7 @@ #include "net.h" #include "err.h" #include "parse.h" +#include "con.h" /* history */ @@ -50,7 +51,7 @@ void nav_next(struct nav_state *ns) { /* paging */ size_t pg_lines(void) { - return 24; + return con_lines() - 1; } struct doc_line *nav_cur_line(struct nav_state *ns) { |