# HG changeset patch # User vimboss # Date 1195558286 0 # Node ID bce7c73fd56da29730fff999a1fa4b0edea3285c # Parent 21b11491a33fee3cd77dcfcc2448382f060543f2 updated for version 7.1-157 diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- 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 --- 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,