patch 8.1.0105: all tab stops are the same
Problem: All tab stops are the same.
Solution: Add the variable tabstop feature. (Christian Brabandt,
closes #2711)
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 49aa1e0..8553811 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -8934,6 +8934,9 @@
beval->msg = mesg;
beval->msgCB = mesgCB;
beval->clientData = clientData;
+#ifdef FEAT_VARTABS
+ beval->vts = NULL;
+#endif
InitCommonControls();
cur_beval = beval;
@@ -8990,6 +8993,10 @@
void
gui_mch_destroy_beval_area(BalloonEval *beval)
{
+#ifdef FEAT_VARTABS
+ if (beval->vts)
+ vim_free(beval->vts);
+#endif
vim_free(beval);
}
#endif /* FEAT_BEVAL_GUI */