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