patch 8.2.1992: build fails with small features

Problem:    Build fails with small features.
Solution:   Add #ifdef.
diff --git a/src/move.c b/src/move.c
index 0a98f03..cd90379 100644
--- a/src/move.c
+++ b/src/move.c
@@ -868,7 +868,9 @@
 	curwin->w_wcol = col;
 
 	curwin->w_valid |= VALID_WCOL;
+#ifdef FEAT_PROP_POPUP
 	curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
+#endif
     }
 }