comparison src/globals.h @ 15850:a6ca8cf07a98 v8.1.0932

patch 8.1.0932: Farsi support is outdated and unused commit https://github.com/vim/vim/commit/14184a3133b9a6ee5f711d493c04e41ba4fa7c2f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 16 15:10:30 2019 +0100 patch 8.1.0932: Farsi support is outdated and unused Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Feb 2019 15:15:07 +0100
parents a3e2e7948ee4
children 7fad90423bd2
comparison
equal deleted inserted replaced
15849:c478f5603556 15850:a6ca8cf07a98
1448 EXTERN char e_nogvim[] INIT(= N_("E25: GUI cannot be used: Not enabled at compile time")); 1448 EXTERN char e_nogvim[] INIT(= N_("E25: GUI cannot be used: Not enabled at compile time"));
1449 #endif 1449 #endif
1450 #ifndef FEAT_RIGHTLEFT 1450 #ifndef FEAT_RIGHTLEFT
1451 EXTERN char e_nohebrew[] INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n")); 1451 EXTERN char e_nohebrew[] INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n"));
1452 #endif 1452 #endif
1453 #ifndef FEAT_FKMAP 1453 EXTERN char e_nofarsi[] INIT(= N_("E27: Farsi support has been removed\n"));
1454 EXTERN char e_nofarsi[] INIT(= N_("E27: Farsi cannot be used: Not enabled at compile time\n"));
1455 #endif
1456 #ifndef FEAT_ARABIC 1454 #ifndef FEAT_ARABIC
1457 EXTERN char e_noarabic[] INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n")); 1455 EXTERN char e_noarabic[] INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
1458 #endif 1456 #endif
1459 #if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL) 1457 #if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL)
1460 EXTERN char e_nogroup[] INIT(= N_("E28: No such highlight group name: %s")); 1458 EXTERN char e_nogroup[] INIT(= N_("E28: No such highlight group name: %s"));
1654 #ifdef FEAT_TEXT_PROP 1652 #ifdef FEAT_TEXT_PROP
1655 EXTERN int text_prop_frozen INIT(= 0); 1653 EXTERN int text_prop_frozen INIT(= 0);
1656 #endif 1654 #endif
1657 1655
1658 /* 1656 /*
1659 * Optional Farsi support. Include it here, so EXTERN and INIT are defined.
1660 */
1661 #ifdef FEAT_FKMAP
1662 # include "farsi.h"
1663 #endif
1664
1665 /*
1666 * Optional Arabic support. Include it here, so EXTERN and INIT are defined. 1657 * Optional Arabic support. Include it here, so EXTERN and INIT are defined.
1667 */ 1658 */
1668 #ifdef FEAT_ARABIC 1659 #ifdef FEAT_ARABIC
1669 # include "arabic.h" 1660 # include "arabic.h"
1670 #endif 1661 #endif