summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-11-20 11:31:26 +0000
committerBram Moolenaar <Bram@vim.org>2007-11-20 11:31:26 +0000
commitf998c04691c04db16a6674148766898ff144269c (patch)
tree35d3969c7955b1f3c8fb607aceff7e543d301fac
parent81870894a70a0d72b734c231e79bb6e1f6acf377 (diff)
updated for version 7.1-157v7.1.157
-rw-r--r--src/ex_docmd.c4
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 761165263d..a6186f4db9 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1741,7 +1741,9 @@ do_one_cmd(cmdlinep, sourcing,
}
/* ignore comment and empty lines */
- if (*ea.cmd == '"' || *ea.cmd == NUL)
+ if (*ea.cmd == '"')
+ goto doend;
+ if (*ea.cmd == NUL)
{
ex_pressedreturn = TRUE;
goto doend;
diff --git a/src/version.c b/src/version.c
index 23b6a3940d..2e300f5a8d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 157,
+/**/
156,
/**/
155,