comparison src/normal.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 fd0d29d63b85
children 75b5d77bbbab
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
25 static int restart_VIsual_select = 0; 25 static int restart_VIsual_select = 0;
26 26
27 #ifdef FEAT_EVAL 27 #ifdef FEAT_EVAL
28 static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount); 28 static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
29 #endif 29 #endif
30 static int 30 static int nv_compare(const void *s1, const void *s2);
31 #ifdef __BORLANDC__
32 _RTLENTRYF
33 #endif
34 nv_compare(const void *s1, const void *s2);
35 static void op_colon(oparg_T *oap); 31 static void op_colon(oparg_T *oap);
36 static void op_function(oparg_T *oap); 32 static void op_function(oparg_T *oap);
37 #if defined(FEAT_MOUSE) 33 #if defined(FEAT_MOUSE)
38 static void find_start_of_word(pos_T *); 34 static void find_start_of_word(pos_T *);
39 static void find_end_of_word(pos_T *); 35 static void find_end_of_word(pos_T *);
420 /* 416 /*
421 * Compare functions for qsort() below, that checks the command character 417 * Compare functions for qsort() below, that checks the command character
422 * through the index in nv_cmd_idx[]. 418 * through the index in nv_cmd_idx[].
423 */ 419 */
424 static int 420 static int
425 #ifdef __BORLANDC__
426 _RTLENTRYF
427 #endif
428 nv_compare(const void *s1, const void *s2) 421 nv_compare(const void *s1, const void *s2)
429 { 422 {
430 int c1, c2; 423 int c1, c2;
431 424
432 /* The commands are sorted on absolute value. */ 425 /* The commands are sorted on absolute value. */