forked from aniani/vim
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)
This commit is contained in:
@@ -832,9 +832,9 @@ EX(CMD_set, "set", ex_set,
|
|||||||
EX(CMD_setfiletype, "setfiletype", ex_setfiletype,
|
EX(CMD_setfiletype, "setfiletype", ex_setfiletype,
|
||||||
TRLBAR|EXTRA|NEEDARG|CMDWIN),
|
TRLBAR|EXTRA|NEEDARG|CMDWIN),
|
||||||
EX(CMD_setglobal, "setglobal", ex_set,
|
EX(CMD_setglobal, "setglobal", ex_set,
|
||||||
TRLBAR|EXTRA|CMDWIN),
|
TRLBAR|EXTRA|CMDWIN|SBOXOK),
|
||||||
EX(CMD_setlocal, "setlocal", ex_set,
|
EX(CMD_setlocal, "setlocal", ex_set,
|
||||||
TRLBAR|EXTRA|CMDWIN),
|
TRLBAR|EXTRA|CMDWIN|SBOXOK),
|
||||||
EX(CMD_sfind, "sfind", ex_splitview,
|
EX(CMD_sfind, "sfind", ex_splitview,
|
||||||
BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
|
BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
|
||||||
EX(CMD_sfirst, "sfirst", ex_rewind,
|
EX(CMD_sfirst, "sfirst", ex_rewind,
|
||||||
|
@@ -725,6 +725,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
714,
|
||||||
/**/
|
/**/
|
||||||
713,
|
713,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user