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)
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index b616740..001ccd7 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4841,7 +4841,7 @@
if (*arg == '+') /* +[command] */
{
++arg;
- if (vim_isspace(*arg))
+ if (vim_isspace(*arg) || *arg == NUL)
command = dollar_command;
else
{
diff --git a/src/version.c b/src/version.c
index eb8de1c..b002972 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 239,
+/**/
238,
/**/
237,