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