diff src/testdir/test_autocmd.vim @ 17093:5cda6165a5c1 v8.1.1546

patch 8.1.1546: in some tests 'tags' is set but not restored commit https://github.com/vim/vim/commit/0331faf71200a274377e1569fcda4f00c9cf3e2a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 15 18:40:37 2019 +0200 patch 8.1.1546: in some tests 'tags' is set but not restored Problem: In some tests 'tags' is set but not restored. (Daniel Hahler) Solution: Restore 'tags'. (closes https://github.com/vim/vim/issues/4535)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Jun 2019 18:45:05 +0200
parents 620e9011b685
children 0da9bc55c31a
line wrap: on
line diff
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -1100,6 +1100,7 @@ func Test_OptionSet()
 
   " Cleanup
   au! OptionSet
+  " set tags&
   for opt in ['nu', 'ai', 'acd', 'ar', 'bs', 'backup', 'cul', 'cp', 'backupext', 'tags', 'spelllang', 'statusline', 'foldignore', 'cmdheight', 'undolevels', 'wrapmargin', 'foldcolumn', 'wrapscan', 'autoread', 'cindent', 'cursorcolumn']
     exe printf(":set %s&vim", opt)
   endfor