|
Karsten Hopp |
febd30 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
febd30 |
Subject: Patch 7.3.714
|
|
Karsten Hopp |
febd30 |
Fcc: outbox
|
|
Karsten Hopp |
febd30 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
febd30 |
Mime-Version: 1.0
|
|
Karsten Hopp |
febd30 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
febd30 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
febd30 |
------------
|
|
Karsten Hopp |
febd30 |
|
|
Karsten Hopp |
febd30 |
Patch 7.3.714
|
|
Karsten Hopp |
febd30 |
Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and
|
|
Karsten Hopp |
febd30 |
:setglobal cannot. (Michael Henry)
|
|
Karsten Hopp |
febd30 |
Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt)
|
|
Karsten Hopp |
febd30 |
Files: src/ex_cmds.h
|
|
Karsten Hopp |
febd30 |
|
|
Karsten Hopp |
febd30 |
|
|
Karsten Hopp |
febd30 |
*** ../vim-7.3.713/src/ex_cmds.h 2012-08-08 17:31:36.000000000 +0200
|
|
Karsten Hopp |
febd30 |
--- src/ex_cmds.h 2012-11-14 20:41:28.000000000 +0100
|
|
Karsten Hopp |
febd30 |
***************
|
|
Karsten Hopp |
febd30 |
*** 832,840 ****
|
|
Karsten Hopp |
febd30 |
EX(CMD_setfiletype, "setfiletype", ex_setfiletype,
|
|
Karsten Hopp |
febd30 |
TRLBAR|EXTRA|NEEDARG|CMDWIN),
|
|
Karsten Hopp |
febd30 |
EX(CMD_setglobal, "setglobal", ex_set,
|
|
Karsten Hopp |
febd30 |
! TRLBAR|EXTRA|CMDWIN),
|
|
Karsten Hopp |
febd30 |
EX(CMD_setlocal, "setlocal", ex_set,
|
|
Karsten Hopp |
febd30 |
! TRLBAR|EXTRA|CMDWIN),
|
|
Karsten Hopp |
febd30 |
EX(CMD_sfind, "sfind", ex_splitview,
|
|
Karsten Hopp |
febd30 |
BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
|
|
Karsten Hopp |
febd30 |
EX(CMD_sfirst, "sfirst", ex_rewind,
|
|
Karsten Hopp |
febd30 |
--- 832,840 ----
|
|
Karsten Hopp |
febd30 |
EX(CMD_setfiletype, "setfiletype", ex_setfiletype,
|
|
Karsten Hopp |
febd30 |
TRLBAR|EXTRA|NEEDARG|CMDWIN),
|
|
Karsten Hopp |
febd30 |
EX(CMD_setglobal, "setglobal", ex_set,
|
|
Karsten Hopp |
febd30 |
! TRLBAR|EXTRA|CMDWIN|SBOXOK),
|
|
Karsten Hopp |
febd30 |
EX(CMD_setlocal, "setlocal", ex_set,
|
|
Karsten Hopp |
febd30 |
! TRLBAR|EXTRA|CMDWIN|SBOXOK),
|
|
Karsten Hopp |
febd30 |
EX(CMD_sfind, "sfind", ex_splitview,
|
|
Karsten Hopp |
febd30 |
BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
|
|
Karsten Hopp |
febd30 |
EX(CMD_sfirst, "sfirst", ex_rewind,
|
|
Karsten Hopp |
febd30 |
*** ../vim-7.3.713/src/version.c 2012-11-14 18:10:49.000000000 +0100
|
|
Karsten Hopp |
febd30 |
--- src/version.c 2012-11-14 20:43:01.000000000 +0100
|
|
Karsten Hopp |
febd30 |
***************
|
|
Karsten Hopp |
febd30 |
*** 727,728 ****
|
|
Karsten Hopp |
febd30 |
--- 727,730 ----
|
|
Karsten Hopp |
febd30 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
febd30 |
+ /**/
|
|
Karsten Hopp |
febd30 |
+ 714,
|
|
Karsten Hopp |
febd30 |
/**/
|
|
Karsten Hopp |
febd30 |
|
|
Karsten Hopp |
febd30 |
--
|
|
Karsten Hopp |
febd30 |
"So this is it," said Arthur, "we are going to die."
|
|
Karsten Hopp |
febd30 |
"Yes," said Ford, "except...no! Wait a minute!" He suddenly lunged across
|
|
Karsten Hopp |
febd30 |
the chamber at something behind Arthur's line of vision. "What's this
|
|
Karsten Hopp |
febd30 |
switch?" he cried.
|
|
Karsten Hopp |
febd30 |
"What? Where?" cried Arthur, twisting around.
|
|
Karsten Hopp |
febd30 |
"No, I was only fooling," said Ford, "we are going to die after all."
|
|
Karsten Hopp |
febd30 |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
febd30 |
|
|
Karsten Hopp |
febd30 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
febd30 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
febd30 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
febd30 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|