patch 8.1.1847: suspend test is failing
Problem: Suspend test is failing.
Solution: Do not use GetVimCommandClean().
diff --git a/src/testdir/test_suspend.vim b/src/testdir/test_suspend.vim
index bf88bd4..4b3bd5e 100644
--- a/src/testdir/test_suspend.vim
+++ b/src/testdir/test_suspend.vim
@@ -26,8 +26,8 @@
" Wait for shell prompt.
call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
- call term_sendkeys(buf, GetVimCommandClean()
- \ . " -X"
+ call term_sendkeys(buf, v:progpath
+ \ . " --clean -X"
\ . " -c 'set nu'"
\ . " -c 'call setline(1, \"foo\")'"
\ . " Xfoo\<CR>")
diff --git a/src/version.c b/src/version.c
index 53982c5..b8a84ac 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1847,
+/**/
1846,
/**/
1845,