diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-06 22:15:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-06 22:15:08 +0200 |
commit | aeac9006d5d14910f214f09df52c026a5936e737 (patch) | |
tree | 53c5b2efb24387c625d95ff4f5af4d1436c57c76 /src/testdir/test_autocmd.vim | |
parent | 64d8e25bf6efe5f18b032563521c3ce278c316ab (diff) | |
download | vim-git-aeac9006d5d14910f214f09df52c026a5936e737.tar.gz |
patch 7.4.2341v7.4.2341
Problem: Tiny things. Test doesn't clean up properly.
Solution: Adjust comment and white space. Restore option value.
Diffstat (limited to 'src/testdir/test_autocmd.vim')
-rw-r--r-- | src/testdir/test_autocmd.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim index c029ca1bd..85233797d 100644 --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -20,6 +20,7 @@ if has('timers') call feedkeys('a', 'x!') call assert_equal(1, g:triggered) au! CursorHoldI + set updatetime& endfunc func Test_cursorhold_insert_ctrl_x() @@ -31,6 +32,7 @@ if has('timers') call feedkeys("a\<C-X>", 'x!') call assert_equal(0, g:triggered) au! CursorHoldI + set updatetime& endfunc endif @@ -220,6 +222,7 @@ func Test_augroup_warning() augroup Another augroup END call assert_true(match(execute('au VimEnter'), "-Deleted-.*VimEnter") >= 0) + augroup! Another " no warning for postpone aucmd delete augroup StartOK |