summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-26 21:56:47 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-26 21:56:47 +0100
commit9f646c2e1105f27484d7b008a29da554ff2c21b6 (patch)
tree986f39907ee4c7357909d4ca4b5f694c5d9deabf
parentd0bce504ec52def729fffa35c8896979af348d32 (diff)
patch 8.2.2552: Vim9: no reason to consider "{{{{{{{{" a commandv8.2.2552
Problem: Vim9: no reason to consider "{{{{{{{{" a command. Solution: Just use "{". (issue #7904)
-rw-r--r--src/ex_cmds.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 7888d6fee0..d114fedb88 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1819,7 +1819,7 @@ EXCMD(CMD_rshift, ">", ex_operators,
EXCMD(CMD_at, "@", ex_at,
EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK,
ADDR_LINES),
-EXCMD(CMD_block, "{{{{{{{{", ex_block, // not found normally
+EXCMD(CMD_block, "{", ex_block, // not found normally
0,
ADDR_NONE),
EXCMD(CMD_endblock, "}", ex_endblock,
diff --git a/src/version.c b/src/version.c
index 07c793d940..dc6a16c0c1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2552,
+/**/
2551,
/**/
2550,