summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-02-28 16:02:35 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-28 16:02:35 +0000
commitf0300fc7b81e63c2584dc3a763dedea4184d17e5 (patch)
treecc1dbf26229712a538c21477455f67b148440ef4
parentda77693b17ff1f17f03ac78f0298294cf7d1087f (diff)
downloadvim-git-f0300fc7b81e63c2584dc3a763dedea4184d17e5.tar.gz
patch 9.0.1365: dead test codev9.0.1365
Problem: Dead test code. Solution: Remove code that depends on Farsi, which has been removed. (closes #12084)
-rw-r--r--src/testdir/test_startup.vim9
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 7 deletions
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim
index 081c7f890..949553350 100644
--- a/src/testdir/test_startup.vim
+++ b/src/testdir/test_startup.vim
@@ -389,8 +389,8 @@ func Test_m_M_R()
call delete('Xtestout')
endfunc
-" Test the -A, -F and -H arguments (Arabic, Farsi and Hebrew modes).
-func Test_A_F_H_arg()
+" Test the -A and -H arguments (Arabic and Hebrew modes).
+func Test_A_H_arg()
let after =<< trim [CODE]
call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout")
qall
@@ -403,11 +403,6 @@ func Test_A_F_H_arg()
call assert_equal(['1', '1', '0', '0'], lines)
endif
- if has('farsi') && RunVim([], after, '-F')
- let lines = readfile('Xtestout')
- call assert_equal(['1', '0', '1', '0'], lines)
- endif
-
if has('rightleft') && RunVim([], after, '-H')
let lines = readfile('Xtestout')
call assert_equal(['1', '0', '0', '1'], lines)
diff --git a/src/version.c b/src/version.c
index 7ae6d8bca..fbb16ae69 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1365,
+/**/
1364,
/**/
1363,