Mercurial > vim
view src/testdir/test102.in @ 6584:d129b939a190 v7.4.618
updated for version 7.4.618
Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi)
Solution: Put the return statement back.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 03 Feb 2015 23:10:46 +0100 |
parents | 6f88e2dafbf6 |
children |
line wrap: on
line source
Test if fnameescape is correct for special chars like ! STARTTEST :so small.vim :%d :let fname = 'Xspa ce' :try | exe "w! " . fnameescape(fname) | put='Space' | endtry :let fname = 'Xemark!' :try | exe "w! " . fnameescape(fname) | put='ExclamationMark' | endtry :w! test.out :qa! ENDTEST