comparison src/testdir/shared.vim @ 18829:eff8d8f72a82 v8.1.2402

patch 8.1.2402: typos and other small things Commit: https://github.com/vim/vim/commit/f48ee3c28488f7c361732316f905ac420b3d8087 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 6 22:18:20 2019 +0100 patch 8.1.2402: typos and other small things Problem: Typos and other small things. Solution: Small fixes.
author Bram Moolenaar <Bram@vim.org>
date Fri, 06 Dec 2019 22:30:04 +0100
parents f6dcf7eabd26
children 2a017e9dc6da
comparison
equal deleted inserted replaced
18828:ac753285efc2 18829:eff8d8f72a82
313 if len(a:after) > 0 313 if len(a:after) > 0
314 call writefile(a:after, 'Xafter.vim') 314 call writefile(a:after, 'Xafter.vim')
315 let args .= ' -S Xafter.vim' 315 let args .= ' -S Xafter.vim'
316 endif 316 endif
317 317
318 " Optionally run Vim under valgrind
319 " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd
320
318 exe "silent !" . a:pipecmd . cmd . args . ' ' . a:arguments 321 exe "silent !" . a:pipecmd . cmd . args . ' ' . a:arguments
319 322
320 if len(a:before) > 0 323 if len(a:before) > 0
321 call delete('Xbefore.vim') 324 call delete('Xbefore.vim')
322 endif 325 endif