diff src/ex_cmds.h @ 14323:9df95cf9ea7e v8.1.0177

patch 8.1.0177: defining function in sandbox is inconsistent commit https://github.com/vim/vim/commit/93343725b5fa1cf580a24302455980faacae8ee2 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 10 19:39:18 2018 +0200 patch 8.1.0177: defining function in sandbox is inconsistent Problem: Defining function in sandbox is inconsistent, cannot use :function but can define a lambda. Solution: Allow defining a function in the sandbox, but also use the sandbox when executing it. (closes #3182)
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Jul 2018 19:45:05 +0200
parents 4df23d9bad47
children 4caa51067cb8
line wrap: on
line diff
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -584,7 +584,7 @@ EX(CMD_for,		"for",		ex_while,
 			EXTRA|NOTRLCOM|SBOXOK|CMDWIN,
 			ADDR_LINES),
 EX(CMD_function,	"function",	ex_function,
-			EXTRA|BANG|CMDWIN,
+			EXTRA|BANG|SBOXOK|CMDWIN,
 			ADDR_LINES),
 EX(CMD_global,		"global",	ex_global,
 			RANGE|WHOLEFOLD|BANG|EXTRA|DFLALL|SBOXOK|CMDWIN,