# HG changeset patch # User vimboss # Date 1155740661 0 # Node ID 529c6a431ff5d5612bfba4424c023dcf073c2cc1 # Parent 2448f4c8afc65a91130fa0237c253e6698481c64 updated for version 7.0-056 diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -1710,6 +1710,10 @@ do_one_cmd(cmdlinep, sourcing, save_cmdmod = cmdmod; vim_memset(&cmdmod, 0, sizeof(cmdmod)); + /* "#!anything" is handled like a comment. */ + if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!') + goto doend; + /* * Repeat until no more command modifiers are found. */ 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 */ /**/ + 56, +/**/ 55, /**/ 54,