|
Karsten Hopp |
845afa |
To: vim-dev@vim.org
|
|
Karsten Hopp |
845afa |
Subject: Patch 7.0.001
|
|
Karsten Hopp |
845afa |
Fcc: outbox
|
|
Karsten Hopp |
845afa |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
845afa |
Mime-Version: 1.0
|
|
Karsten Hopp |
845afa |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
845afa |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
845afa |
------------
|
|
Karsten Hopp |
845afa |
|
|
Karsten Hopp |
845afa |
Patch 7.0.001
|
|
Karsten Hopp |
845afa |
Problem: ":set spellsuggest+=10" does not work. (Suresh Govindachar)
|
|
Karsten Hopp |
845afa |
Solution: Add P_COMMA to the 'spellsuggest' flags.
|
|
Karsten Hopp |
845afa |
Files: src/option.c
|
|
Karsten Hopp |
845afa |
|
|
Karsten Hopp |
845afa |
|
|
Karsten Hopp |
845afa |
*** ../vim-7.0.000/src/option.c Wed May 3 23:26:04 2006
|
|
Karsten Hopp |
845afa |
--- src/option.c Sun May 7 17:54:46 2006
|
|
Karsten Hopp |
845afa |
***************
|
|
Karsten Hopp |
845afa |
*** 2294,2300 ****
|
|
Karsten Hopp |
845afa |
{(char_u *)0L, (char_u *)0L}
|
|
Karsten Hopp |
845afa |
#endif
|
|
Karsten Hopp |
845afa |
},
|
|
Karsten Hopp |
845afa |
! {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
|
|
Karsten Hopp |
845afa |
#ifdef FEAT_SPELL
|
|
Karsten Hopp |
845afa |
(char_u *)&p_sps, PV_NONE,
|
|
Karsten Hopp |
845afa |
{(char_u *)"best", (char_u *)0L}
|
|
Karsten Hopp |
845afa |
--- 2294,2300 ----
|
|
Karsten Hopp |
845afa |
{(char_u *)0L, (char_u *)0L}
|
|
Karsten Hopp |
845afa |
#endif
|
|
Karsten Hopp |
845afa |
},
|
|
Karsten Hopp |
845afa |
! {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
|
|
Karsten Hopp |
845afa |
#ifdef FEAT_SPELL
|
|
Karsten Hopp |
845afa |
(char_u *)&p_sps, PV_NONE,
|
|
Karsten Hopp |
845afa |
{(char_u *)"best", (char_u *)0L}
|
|
Karsten Hopp |
845afa |
*** ../vim-7.0.000/src/version.c Wed May 3 00:04:24 2006
|
|
Karsten Hopp |
845afa |
--- src/version.c Tue May 9 14:23:20 2006
|
|
Karsten Hopp |
845afa |
***************
|
|
Karsten Hopp |
845afa |
*** 668,669 ****
|
|
Karsten Hopp |
845afa |
--- 668,671 ----
|
|
Karsten Hopp |
845afa |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
845afa |
+ /**/
|
|
Karsten Hopp |
845afa |
+ 1,
|
|
Karsten Hopp |
845afa |
/**/
|
|
Karsten Hopp |
845afa |
|
|
Karsten Hopp |
845afa |
--
|
|
Karsten Hopp |
845afa |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
845afa |
70. ISDN lines are added to your house on a hourly basis
|
|
Karsten Hopp |
845afa |
|
|
Karsten Hopp |
845afa |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
845afa |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
845afa |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
845afa |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|