# HG changeset patch # User Bram Moolenaar # Date 1352922748 -3600 # Node ID 9ea14f097855e0929f86c86d405725717efb044d # Parent 51ba8061b6d239c61fe7e6ec5c82580a0e7ed412 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) diff --git a/src/ex_cmds.h b/src/ex_cmds.h --- 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, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 714, +/**/ 713, /**/ 712,