Skip to content

Commit 451a4a1

Browse files
committed
patch 8.0.0560: :windo allows for ! but it's not supported
Problem: :windo allows for ! but it's not supported. Solution: Disallow passing !. (Hirohito Higashi)
1 parent f803a76 commit 451a4a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ex_cmds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1623,7 +1623,7 @@ EX(CMD_wincmd, "wincmd", ex_wincmd,
16231623
NEEDARG|WORD1|RANGE|NOTADR,
16241624
ADDR_WINDOWS),
16251625
EX(CMD_windo, "windo", ex_listdo,
1626-
BANG|NEEDARG|EXTRA|NOTRLCOM|RANGE|NOTADR|DFLALL,
1626+
NEEDARG|EXTRA|NOTRLCOM|RANGE|NOTADR|DFLALL,
16271627
ADDR_WINDOWS),
16281628
EX(CMD_winpos, "winpos", ex_winpos,
16291629
EXTRA|TRLBAR|CMDWIN,

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
560,
767769
/**/
768770
559,
769771
/**/

0 commit comments

Comments
 (0)