comparison src/spellfile.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 62b3805506b3
children b52ea9c5f1db
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
4800 break; 4800 break;
4801 4801
4802 return p1 == NULL && p2 == NULL; 4802 return p1 == NULL && p2 == NULL;
4803 } 4803 }
4804 4804
4805 static int 4805 static int rep_compare(const void *s1, const void *s2);
4806 #ifdef __BORLANDC__
4807 _RTLENTRYF
4808 #endif
4809 rep_compare(const void *s1, const void *s2);
4810 4806
4811 /* 4807 /*
4812 * Function given to qsort() to sort the REP items on "from" string. 4808 * Function given to qsort() to sort the REP items on "from" string.
4813 */ 4809 */
4814 static int 4810 static int
4815 #ifdef __BORLANDC__
4816 _RTLENTRYF
4817 #endif
4818 rep_compare(const void *s1, const void *s2) 4811 rep_compare(const void *s1, const void *s2)
4819 { 4812 {
4820 fromto_T *p1 = (fromto_T *)s1; 4813 fromto_T *p1 = (fromto_T *)s1;
4821 fromto_T *p2 = (fromto_T *)s2; 4814 fromto_T *p2 = (fromto_T *)s2;
4822 4815