|
Karsten Hopp |
92f6ba |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
92f6ba |
Subject: Patch 7.4.239
|
|
Karsten Hopp |
92f6ba |
Fcc: outbox
|
|
Karsten Hopp |
92f6ba |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
92f6ba |
Mime-Version: 1.0
|
|
Karsten Hopp |
92f6ba |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
92f6ba |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
92f6ba |
------------
|
|
Karsten Hopp |
92f6ba |
|
|
Karsten Hopp |
92f6ba |
Patch 7.4.239
|
|
Karsten Hopp |
92f6ba |
Problem: ":e +" does not position cursor at end of the file.
|
|
Karsten Hopp |
92f6ba |
Solution: Check for "+" being the last character (ZyX)
|
|
Karsten Hopp |
92f6ba |
Files: src/ex_docmd.c
|
|
Karsten Hopp |
92f6ba |
|
|
Karsten Hopp |
92f6ba |
|
|
Karsten Hopp |
92f6ba |
*** ../vim-7.4.238/src/ex_docmd.c 2014-04-01 18:54:44.312837673 +0200
|
|
Karsten Hopp |
92f6ba |
--- src/ex_docmd.c 2014-04-02 14:18:02.247877546 +0200
|
|
Karsten Hopp |
92f6ba |
***************
|
|
Karsten Hopp |
92f6ba |
*** 4841,4847 ****
|
|
Karsten Hopp |
92f6ba |
if (*arg == '+') /* +[command] */
|
|
Karsten Hopp |
92f6ba |
{
|
|
Karsten Hopp |
92f6ba |
++arg;
|
|
Karsten Hopp |
92f6ba |
! if (vim_isspace(*arg))
|
|
Karsten Hopp |
92f6ba |
command = dollar_command;
|
|
Karsten Hopp |
92f6ba |
else
|
|
Karsten Hopp |
92f6ba |
{
|
|
Karsten Hopp |
92f6ba |
--- 4841,4847 ----
|
|
Karsten Hopp |
92f6ba |
if (*arg == '+') /* +[command] */
|
|
Karsten Hopp |
92f6ba |
{
|
|
Karsten Hopp |
92f6ba |
++arg;
|
|
Karsten Hopp |
92f6ba |
! if (vim_isspace(*arg) || *arg == NUL)
|
|
Karsten Hopp |
92f6ba |
command = dollar_command;
|
|
Karsten Hopp |
92f6ba |
else
|
|
Karsten Hopp |
92f6ba |
{
|
|
Karsten Hopp |
92f6ba |
*** ../vim-7.4.238/src/version.c 2014-04-02 14:05:34.003887839 +0200
|
|
Karsten Hopp |
92f6ba |
--- src/version.c 2014-04-02 14:17:40.923877840 +0200
|
|
Karsten Hopp |
92f6ba |
***************
|
|
Karsten Hopp |
92f6ba |
*** 736,737 ****
|
|
Karsten Hopp |
92f6ba |
--- 736,739 ----
|
|
Karsten Hopp |
92f6ba |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
92f6ba |
+ /**/
|
|
Karsten Hopp |
92f6ba |
+ 239,
|
|
Karsten Hopp |
92f6ba |
/**/
|
|
Karsten Hopp |
92f6ba |
|
|
Karsten Hopp |
92f6ba |
--
|
|
Karsten Hopp |
92f6ba |
Q: What is the difference betwee open-source and commercial software?
|
|
Karsten Hopp |
92f6ba |
A: If you have a problem with commercial software you can call a phone
|
|
Karsten Hopp |
92f6ba |
number and they will tell you it might be solved in a future version.
|
|
Karsten Hopp |
92f6ba |
For open-source software there isn't a phone number to call, but you
|
|
Karsten Hopp |
92f6ba |
get the solution within a day.
|
|
Karsten Hopp |
92f6ba |
|
|
Karsten Hopp |
92f6ba |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
92f6ba |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
92f6ba |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
92f6ba |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|