forked from aniani/vim
updated for version 7.4.239
Problem: ":e +" does not position cursor at end of the file. Solution: Check for "+" being the last character (ZyX)
This commit is contained in:
parent
5bd32f47ec
commit
3e45159ceb
@ -4841,7 +4841,7 @@ getargcmd(argp)
|
||||
if (*arg == '+') /* +[command] */
|
||||
{
|
||||
++arg;
|
||||
if (vim_isspace(*arg))
|
||||
if (vim_isspace(*arg) || *arg == NUL)
|
||||
command = dollar_command;
|
||||
else
|
||||
{
|
||||
|
@ -734,6 +734,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
239,
|
||||
/**/
|
||||
238,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user