patch 9.0.1121: cursor positioning and display problems with 'smoothscroll'
Problem: Cursor positioning and display problems with 'smoothscroll' and
using "zt", "zb" or "zz".
Solution: Adjust computations and conditions. (Yee Cheng Chin,
closes #11764)
diff --git a/src/macros.h b/src/macros.h
index 86fd60b..cb97d43 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -253,8 +253,10 @@
#ifdef FEAT_DIFF
# define PLINES_NOFILL(x) plines_nofill(x)
+# define PLINES_WIN_NOFILL(w, l, h) plines_win_nofill((w), (l), (h))
#else
# define PLINES_NOFILL(x) plines(x)
+# define PLINES_WIN_NOFILL(w, l, h) plines_win((w), (l), (h))
#endif
#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)