summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-16 15:10:30 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-16 15:10:30 +0100
commit14184a3133b9a6ee5f711d493c04e41ba4fa7c2f (patch)
tree2fefdfea751bfbfdbbec793f880073bd8387bb4f /src/normal.c
parent6902c0eb27a3e4479445badfef31443f2227fe60 (diff)
downloadvim-git-14184a3133b9a6ee5f711d493c04e41ba4fa7c2f.tar.gz
patch 8.1.0932: Farsi support is outdated and unusedv8.1.0932
Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/normal.c b/src/normal.c
index 41af96628..624e34751 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -397,10 +397,6 @@ static const struct nv_cmd
{K_TABLINE, nv_tabline, 0, 0},
{K_TABMENU, nv_tabmenu, 0, 0},
#endif
-#ifdef FEAT_FKMAP
- {K_F8, farsi_f8, 0, 0},
- {K_F9, farsi_f9, 0, 0},
-#endif
#ifdef FEAT_NETBEANS_INTG
{K_F21, nv_nbcmd, NV_NCH_ALW, 0},
#endif
@@ -987,11 +983,6 @@ getcount:
/* adjust Hebrew mapped char */
if (p_hkmap && lang && KeyTyped)
*cp = hkmap(*cp);
-# ifdef FEAT_FKMAP
- /* adjust Farsi mapped char */
- if (p_fkmap && lang && KeyTyped)
- *cp = fkmap(*cp);
-# endif
#endif
}