comparison src/ex_cmds.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 854fb0ad4be6
children 1fc9cd08cf3c
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
27 static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing); 27 static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing);
28 #endif 28 #endif
29 29
30 static int check_readonly(int *forceit, buf_T *buf); 30 static int check_readonly(int *forceit, buf_T *buf);
31 static void delbuf_msg(char_u *name); 31 static void delbuf_msg(char_u *name);
32 static int 32 static int help_compare(const void *s1, const void *s2);
33 #ifdef __BORLANDC__
34 _RTLENTRYF
35 #endif
36 help_compare(const void *s1, const void *s2);
37 static void prepare_help_buffer(void); 33 static void prepare_help_buffer(void);
38 34
39 /* 35 /*
40 * ":ascii" and "ga". 36 * ":ascii" and "ga".
41 */ 37 */
312 float_T value_flt; // value if sorting by float 308 float_T value_flt; // value if sorting by float
313 #endif 309 #endif
314 } st_u; 310 } st_u;
315 } sorti_T; 311 } sorti_T;
316 312
317 static int 313 static int sort_compare(const void *s1, const void *s2);
318 #ifdef __BORLANDC__
319 _RTLENTRYF
320 #endif
321 sort_compare(const void *s1, const void *s2);
322 314
323 static int 315 static int
324 #ifdef __BORLANDC__
325 _RTLENTRYF
326 #endif
327 sort_compare(const void *s1, const void *s2) 316 sort_compare(const void *s1, const void *s2)
328 { 317 {
329 sorti_T l1 = *(sorti_T *)s1; 318 sorti_T l1 = *(sorti_T *)s1;
330 sorti_T l2 = *(sorti_T *)s2; 319 sorti_T l2 = *(sorti_T *)s2;
331 int result = 0; 320 int result = 0;
6578 /* 6567 /*
6579 * Compare functions for qsort() below, that checks the help heuristics number 6568 * Compare functions for qsort() below, that checks the help heuristics number
6580 * that has been put after the tagname by find_tags(). 6569 * that has been put after the tagname by find_tags().
6581 */ 6570 */
6582 static int 6571 static int
6583 #ifdef __BORLANDC__
6584 _RTLENTRYF
6585 #endif
6586 help_compare(const void *s1, const void *s2) 6572 help_compare(const void *s1, const void *s2)
6587 { 6573 {
6588 char *p1; 6574 char *p1;
6589 char *p2; 6575 char *p2;
6590 6576