]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.714 v7.3.714
authorBram Moolenaar <Bram@vim.org>
Wed, 14 Nov 2012 19:52:28 +0000 (20:52 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 14 Nov 2012 19:52:28 +0000 (20:52 +0100)
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
src/version.c

index c81a1aa2bf8c6987e0f3b4087a5ba13383f56788..b02b9f6c7818042ab655523bbf46d25d8d5899c4 100644 (file)
@@ -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,
index 3c9bae78095323db36ea79fef32eb6235955c96c..ecbc7aaa578e24d29aefe0931d63ae2e1bdc9a68 100644 (file)
@@ -725,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    714,
 /**/
     713,
 /**/