| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.433 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.433 |
| Problem: Test 75 fails on MS-Windows. |
| Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) |
| Files: src/testdir/test75.in |
| |
| |
| |
| |
| |
| *** 23,38 **** |
| Go:" |
| :" Outside of the range, minimum |
| :inoremap <Char-0x1040> a |
| ! :call feedkeys("a\u1040\<Esc>") |
| :" Inside of the range, minimum |
| :inoremap <Char-0x103f> b |
| ! :call feedkeys("a\u103f\<Esc>") |
| :" Inside of the range, maximum |
| :inoremap <Char-0xf03f> c |
| ! :call feedkeys("a\uf03f\<Esc>") |
| :" Outside of the range, maximum |
| :inoremap <Char-0xf040> d |
| ! :call feedkeys("a\uf040\<Esc>") |
| :" |
| :/^eof/+1,$w! test.out |
| :qa! |
| --- 23,38 ---- |
| Go:" |
| :" Outside of the range, minimum |
| :inoremap <Char-0x1040> a |
| ! :execute "normal a\u1040\<Esc>" |
| :" Inside of the range, minimum |
| :inoremap <Char-0x103f> b |
| ! :execute "normal a\u103f\<Esc>" |
| :" Inside of the range, maximum |
| :inoremap <Char-0xf03f> c |
| ! :execute "normal a\uf03f\<Esc>" |
| :" Outside of the range, maximum |
| :inoremap <Char-0xf040> d |
| ! :execute "normal a\uf040\<Esc>" |
| :" |
| :/^eof/+1,$w! test.out |
| :qa! |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 433, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 107. When using your phone you forget that you don't have to use your |
| keyboard. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |