comparison src/gui_w32.c @ 14175:2ad722003b36 v8.1.0105

patch 8.1.0105: all tab stops are the same commit https://github.com/vim/vim/commit/04958cbaf25eea27eceedaa987adfb354ad5f7fd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 23 19:23:02 2018 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jun 2018 19:30:07 +0200
parents b9b0e4966e7a
children 4cb334816bb1
comparison
equal deleted inserted replaced
14174:d36eedd19166 14175:2ad722003b36
8932 beval->x = 0; 8932 beval->x = 0;
8933 beval->y = 0; 8933 beval->y = 0;
8934 beval->msg = mesg; 8934 beval->msg = mesg;
8935 beval->msgCB = mesgCB; 8935 beval->msgCB = mesgCB;
8936 beval->clientData = clientData; 8936 beval->clientData = clientData;
8937 #ifdef FEAT_VARTABS
8938 beval->vts = NULL;
8939 #endif
8937 8940
8938 InitCommonControls(); 8941 InitCommonControls();
8939 cur_beval = beval; 8942 cur_beval = beval;
8940 8943
8941 if (p_beval) 8944 if (p_beval)
8988 } 8991 }
8989 8992
8990 void 8993 void
8991 gui_mch_destroy_beval_area(BalloonEval *beval) 8994 gui_mch_destroy_beval_area(BalloonEval *beval)
8992 { 8995 {
8996 #ifdef FEAT_VARTABS
8997 if (beval->vts)
8998 vim_free(beval->vts);
8999 #endif
8993 vim_free(beval); 9000 vim_free(beval);
8994 } 9001 }
8995 #endif /* FEAT_BEVAL_GUI */ 9002 #endif /* FEAT_BEVAL_GUI */
8996 9003
8997 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) 9004 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO)