patch 8.1.0856: when scrolling a window the cursorline is not always updated

Problem:    When scrolling a window other than the current one the cursorline
            highlighting is not always updated. (Jason Franklin)
Solution:   Call redraw_for_cursorline() after scrolling.  Only set
            w_last_cursorline when drawing the cursor line.  Reset the lines
            to be redrawn also when redrawing the whole window.
diff --git a/src/proto/move.pro b/src/proto/move.pro
index f66e9cd..ed45c4d 100644
--- a/src/proto/move.pro
+++ b/src/proto/move.pro
@@ -1,5 +1,6 @@
 /* move.c */
 void reset_cursorline(void);
+void redraw_for_cursorline(win_T *wp);
 void update_topline_redraw(void);
 void update_topline(void);
 void update_curswant(void);