aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-03-08 06:44:57 +0800
committerGitHub <noreply@github.com>2024-03-08 06:44:57 +0800
commit5f3579e6ea12659d48e92b2126f83777908c28fc (patch)
tree4a82bc639e44680c635c04916e56da33cfdcbbbe /test
parent3e569d440b8e5a2b190a7013081d29cb7e04af01 (diff)
downloadrneovim-5f3579e6ea12659d48e92b2126f83777908c28fc.tar.gz
rneovim-5f3579e6ea12659d48e92b2126f83777908c28fc.tar.bz2
rneovim-5f3579e6ea12659d48e92b2126f83777908c28fc.zip
vim-patch:9.1.0157: Duplicate assignment in f_getregion() (#27766)
Problem: Duplicate assignment in f_getregion(). Solution: Remove the duplicate assignment. Also improve getregion() docs wording and fix an unrelated typo (zeertzjq) closes: vim/vim#14154 https://github.com/vim/vim/commit/0df8f93bdaea77a1afb9f4eca94fe67ec73e6df2
Diffstat (limited to 'test')
-rw-r--r--test/old/testdir/test_undo.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_undo.vim b/test/old/testdir/test_undo.vim
index a06731cc96..a207f4f4e0 100644
--- a/test/old/testdir/test_undo.vim
+++ b/test/old/testdir/test_undo.vim
@@ -588,7 +588,7 @@ funct Test_undofile()
endif
call assert_equal('', undofile(''))
- " Test undofile() with 'undodir' set to to an existing directory.
+ " Test undofile() with 'undodir' set to an existing directory.
call mkdir('Xundodir')
set undodir=Xundodir
let cwd = getcwd()