diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-08 06:44:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 06:44:57 +0800 |
commit | 5f3579e6ea12659d48e92b2126f83777908c28fc (patch) | |
tree | 4a82bc639e44680c635c04916e56da33cfdcbbbe /test | |
parent | 3e569d440b8e5a2b190a7013081d29cb7e04af01 (diff) | |
download | rneovim-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.vim | 2 |
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() |