From b826ddb034564828487b0ef94f271262bb902f7c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 14 Nov 2012 20:52:28 +0100 Subject: updated for version 7.3.714 Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and :setglobal cannot. (Michael Henry) Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt) --- src/ex_cmds.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ex_cmds.h') diff --git a/src/ex_cmds.h b/src/ex_cmds.h index c81a1aa2b..b02b9f6c7 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -832,9 +832,9 @@ EX(CMD_set, "set", ex_set, EX(CMD_setfiletype, "setfiletype", ex_setfiletype, TRLBAR|EXTRA|NEEDARG|CMDWIN), EX(CMD_setglobal, "setglobal", ex_set, - TRLBAR|EXTRA|CMDWIN), + TRLBAR|EXTRA|CMDWIN|SBOXOK), EX(CMD_setlocal, "setlocal", ex_set, - TRLBAR|EXTRA|CMDWIN), + TRLBAR|EXTRA|CMDWIN|SBOXOK), EX(CMD_sfind, "sfind", ex_splitview, BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR), EX(CMD_sfirst, "sfirst", ex_rewind, -- cgit v1.2.1