3ef2ca
To: vim_dev@googlegroups.com
3ef2ca
Subject: Patch 7.4.239
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.239
3ef2ca
Problem:    ":e +" does not position cursor at end of the file.
3ef2ca
Solution:   Check for "+" being the last character (ZyX)
3ef2ca
Files:	    src/ex_docmd.c
3ef2ca
3ef2ca
3ef2ca
*** ../vim-7.4.238/src/ex_docmd.c	2014-04-01 18:54:44.312837673 +0200
3ef2ca
--- src/ex_docmd.c	2014-04-02 14:18:02.247877546 +0200
3ef2ca
***************
3ef2ca
*** 4841,4847 ****
3ef2ca
      if (*arg == '+')	    /* +[command] */
3ef2ca
      {
3ef2ca
  	++arg;
3ef2ca
! 	if (vim_isspace(*arg))
3ef2ca
  	    command = dollar_command;
3ef2ca
  	else
3ef2ca
  	{
3ef2ca
--- 4841,4847 ----
3ef2ca
      if (*arg == '+')	    /* +[command] */
3ef2ca
      {
3ef2ca
  	++arg;
3ef2ca
! 	if (vim_isspace(*arg) || *arg == NUL)
3ef2ca
  	    command = dollar_command;
3ef2ca
  	else
3ef2ca
  	{
3ef2ca
*** ../vim-7.4.238/src/version.c	2014-04-02 14:05:34.003887839 +0200
3ef2ca
--- src/version.c	2014-04-02 14:17:40.923877840 +0200
3ef2ca
***************
3ef2ca
*** 736,737 ****
3ef2ca
--- 736,739 ----
3ef2ca
  {   /* Add new patch number below this line */
3ef2ca
+ /**/
3ef2ca
+     239,
3ef2ca
  /**/
3ef2ca
3ef2ca
-- 
3ef2ca
Q: What is the difference betwee open-source and commercial software?
3ef2ca
A: If you have a problem with commercial software you can call a phone
3ef2ca
   number and they will tell you it might be solved in a future version.
3ef2ca
   For open-source software there isn't a phone number to call, but you
3ef2ca
   get the solution within a day.
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    ///