|
Karsten Hopp |
83334b |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
83334b |
Subject: Patch 7.4.894
|
|
Karsten Hopp |
83334b |
Fcc: outbox
|
|
Karsten Hopp |
83334b |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
83334b |
Mime-Version: 1.0
|
|
Karsten Hopp |
83334b |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
83334b |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
83334b |
------------
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
Patch 7.4.894
|
|
Karsten Hopp |
83334b |
Problem: vimrun.exe is picky about the number of spaces before -s.
|
|
Karsten Hopp |
83334b |
Solution: Skip all spaces. (Cam Sinclair)
|
|
Karsten Hopp |
83334b |
Files: src/vimrun.c
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
*** ../vim-7.4.893/src/vimrun.c 2010-05-15 13:04:08.000000000 +0200
|
|
Karsten Hopp |
83334b |
--- src/vimrun.c 2015-10-13 17:52:19.458373362 +0200
|
|
Karsten Hopp |
83334b |
***************
|
|
Karsten Hopp |
83334b |
*** 79,84 ****
|
|
Karsten Hopp |
83334b |
--- 79,86 ----
|
|
Karsten Hopp |
83334b |
}
|
|
Karsten Hopp |
83334b |
++p;
|
|
Karsten Hopp |
83334b |
}
|
|
Karsten Hopp |
83334b |
+ while (*p == ' ')
|
|
Karsten Hopp |
83334b |
+ ++p;
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
/*
|
|
Karsten Hopp |
83334b |
* "-s" argument: don't wait for a key hit.
|
|
Karsten Hopp |
83334b |
*** ../vim-7.4.893/src/version.c 2015-10-13 16:13:33.460731830 +0200
|
|
Karsten Hopp |
83334b |
--- src/version.c 2015-10-13 17:50:14.099697025 +0200
|
|
Karsten Hopp |
83334b |
***************
|
|
Karsten Hopp |
83334b |
*** 743,744 ****
|
|
Karsten Hopp |
83334b |
--- 743,746 ----
|
|
Karsten Hopp |
83334b |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
83334b |
+ /**/
|
|
Karsten Hopp |
83334b |
+ 894,
|
|
Karsten Hopp |
83334b |
/**/
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
--
|
|
Karsten Hopp |
83334b |
Q. What happens to programmers when they die?
|
|
Karsten Hopp |
83334b |
A: MS-Windows programmers are reinstalled. C++ programmers become undefined,
|
|
Karsten Hopp |
83334b |
anyone who refers to them will die as well. Java programmers reincarnate
|
|
Karsten Hopp |
83334b |
after being garbage collected, unless they are in permgen, in which case
|
|
Karsten Hopp |
83334b |
they become zombies. Zimbu programmers leave a stack trace that tells us
|
|
Karsten Hopp |
83334b |
exactly where they died and how they got there.
|
|
Karsten Hopp |
83334b |
|
|
Karsten Hopp |
83334b |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
83334b |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
83334b |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
83334b |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|