comparison src/screen.c @ 16606:7e733046db1d v8.1.1306

patch 8.1.1306: Borland support is outdated and doesn't work commit https://github.com/vim/vim/commit/eae1b91fea74842000fc055afc74fe2e7934c6ee Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 9 15:12:55 2019 +0200 patch 8.1.1306: Borland support is outdated and doesn't work Problem: Borland support is outdated and doesn't work. Solution: Remove Borland support, there are other (free) compilers available. (Thomas Dziedzic, Ken Takata, closes #4364)
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 May 2019 15:15:07 +0200
parents 80bb4ce2a281
children 4790302965fc
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
2943 #ifdef FEAT_TEXT_PROP 2943 #ifdef FEAT_TEXT_PROP
2944 static textprop_T *current_text_props = NULL; 2944 static textprop_T *current_text_props = NULL;
2945 static buf_T *current_buf = NULL; 2945 static buf_T *current_buf = NULL;
2946 2946
2947 static int 2947 static int
2948 #ifdef __BORLANDC__
2949 _RTLENTRYF
2950 #endif
2951 text_prop_compare(const void *s1, const void *s2) 2948 text_prop_compare(const void *s1, const void *s2)
2952 { 2949 {
2953 int idx1, idx2; 2950 int idx1, idx2;
2954 proptype_T *pt1, *pt2; 2951 proptype_T *pt1, *pt2;
2955 colnr_T col1, col2; 2952 colnr_T col1, col2;