summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-17 12:45:22 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-17 12:45:22 +0000
commit259f443a934c6f2447a14bfe54403903416a9af0 (patch)
treeda948110b6b10310d7d194845215ce7690057581 /src/ex_cmds.h
parentdeda6441e457072df39cdc8744dcd685d77fa273 (diff)
downloadvim-git-259f443a934c6f2447a14bfe54403903416a9af0.tar.gz
patch 8.2.3835: the inline-function example does not workv8.2.3835
Problem: The inline-function example does not work. Solution: Drop ":let". Add EX_EXPR_ARG to CMD_var. (issue #9352)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index c2657b0ff..044580a7c 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1691,7 +1691,7 @@ EXCMD(CMD_vglobal, "vglobal", ex_global,
EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_DFLALL|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK,
ADDR_LINES),
EXCMD(CMD_var, "var", ex_var,
- EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
+ EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
EXCMD(CMD_version, "version", ex_version,
EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,