patch 9.0.0730: startup test fails with right-left feature

Problem:    Startup test fails with right-left feature.
Solution:   Do not delete test file too early.
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim
index 6c2fbbd..081c7f8 100644
--- a/src/testdir/test_startup.vim
+++ b/src/testdir/test_startup.vim
@@ -392,7 +392,7 @@
 " Test the -A, -F and -H arguments (Arabic, Farsi and Hebrew modes).
 func Test_A_F_H_arg()
   let after =<< trim [CODE]
-    call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout", 'D')
+    call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout")
     qall
   [CODE]
 
@@ -412,6 +412,8 @@
     let lines = readfile('Xtestout')
     call assert_equal(['1', '0', '0', '1'], lines)
   endif
+
+  call delete('Xtestout')
 endfunc
 
 " Test the --echo-wid argument (for GTK GUI only).
diff --git a/src/version.c b/src/version.c
index 3413d52..31d9776 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    730,
+/**/
     729,
 /**/
     728,