Blame SOURCES/7.4.239

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