From: Bram Moolenaar Date: Tue, 20 Nov 2007 11:31:26 +0000 (+0000) Subject: updated for version 7.1-157 X-Git-Tag: v7.1.157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f998c04691c04db16a6674148766898ff144269c;p=vim updated for version 7.1-157 --- diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 761165263..a6186f4db 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 23b6a3940..2e300f5a8 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 157, /**/ 156, /**/