# HG changeset patch # User Bram Moolenaar # Date 1665069302 -7200 # Node ID 815b02faced97fde782c0bf87c81827028e7b401 # Parent 5da756ebe9fac9cac2e3b62a3e8a577e1362f8c2 patch 9.0.0674: build error with tiny version Commit: https://github.com/vim/vim/commit/4d31b48a114c106ec18ceaae9cfd084b8ca7faee Author: Bram Moolenaar Date: Thu Oct 6 16:03:09 2022 +0100 patch 9.0.0674: build error with tiny version Problem: Build error with tiny version. Solution: Use PLINES_NOFILL macro. diff --git a/src/move.c b/src/move.c --- a/src/move.c +++ b/src/move.c @@ -2258,7 +2258,7 @@ scroll_cursor_bot(int min_scroll, int se min_scrolled = scrolled; if (cln > curwin->w_botline && curwin->w_p_sms && curwin->w_p_wrap) for (linenr_T lnum = curwin->w_botline + 1; lnum <= cln; ++lnum) - min_scrolled += plines_nofill(lnum); + min_scrolled += PLINES_NOFILL(lnum); } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 674, +/**/ 673, /**/ 672,