comparison src/option.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 367a775ed430
children 77bcb5055fec
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
12559 didset_options2(); 12559 didset_options2();
12560 } 12560 }
12561 12561
12562 #ifdef FEAT_LINEBREAK 12562 #ifdef FEAT_LINEBREAK
12563 12563
12564 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
12565 /* Borland C++ screws up loop optimisation here (negri) */
12566 #pragma option -O-l
12567 # endif
12568
12569 /* 12564 /*
12570 * fill_breakat_flags() -- called when 'breakat' changes value. 12565 * fill_breakat_flags() -- called when 'breakat' changes value.
12571 */ 12566 */
12572 static void 12567 static void
12573 fill_breakat_flags(void) 12568 fill_breakat_flags(void)
12580 12575
12581 if (p_breakat != NULL) 12576 if (p_breakat != NULL)
12582 for (p = p_breakat; *p; p++) 12577 for (p = p_breakat; *p; p++)
12583 breakat_flags[*p] = TRUE; 12578 breakat_flags[*p] = TRUE;
12584 } 12579 }
12585
12586 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
12587 #pragma option -O.l
12588 # endif
12589
12590 #endif 12580 #endif
12591 12581
12592 /* 12582 /*
12593 * Check an option that can be a range of string values. 12583 * Check an option that can be a range of string values.
12594 * 12584 *