Compare commits

...

5 Commits

Author SHA1 Message Date
Bram Moolenaar
408b585732 updated for version 7.0-005 2006-05-13 10:44:07 +00:00
Bram Moolenaar
b4872945fd updated for version 7.0-004 2006-05-13 10:32:52 +00:00
Bram Moolenaar
8798be0e96 updated for version 7.0-003 2006-05-13 10:11:39 +00:00
Bram Moolenaar
862c27a03c updated for version 7.0-002 2006-05-13 09:09:15 +00:00
Bram Moolenaar
28e4c8d9f0 updated for version 7.0-001 2006-05-09 16:15:42 +00:00
6 changed files with 19 additions and 7 deletions

View File

@@ -391,6 +391,7 @@ Section Uninstall
ClearErrors
# Remove everything but *.dll files. Avoids that
# a lot remains when gvimext.dll cannot be deleted.
RMDir /r $0\autoload
RMDir /r $0\colors
RMDir /r $0\compiler
RMDir /r $0\doc
@@ -398,6 +399,7 @@ Section Uninstall
RMDir /r $0\indent
RMDir /r $0\macros
RMDir /r $0\plugin
RMDir /r $0\spell
RMDir /r $0\syntax
RMDir /r $0\tools
RMDir /r $0\tutor

View File

@@ -1,7 +1,7 @@
" Vim completion script
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2006 May 03
" Last Change: 2006 May 08
" This function is used for the 'omnifunc' option.
@@ -458,7 +458,7 @@ endfunction
" member.
function! s:StructMembers(typename, items, all)
" Todo: What about local structures?
let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
let fnames = join(map(tagfiles(), 'escape(v:val, " \\#%")'))
if fnames == ''
return []
endif

View File

@@ -833,7 +833,7 @@ do_cmdline(cmdline, getline, cookie, flags)
* If requested, store and reset the global values controlling the
* exception handling (used when debugging).
*/
else if (flags & DOCMD_EXCRESET)
if (flags & DOCMD_EXCRESET)
save_dbg_stuff(&debug_saved);
initial_trylevel = trylevel;

View File

@@ -4603,11 +4603,11 @@ gui_mouse_correct()
/* Don't move the mouse when it's left or right of the Vim window */
if (x < 0 || x > Columns * gui.char_width)
return;
if (y >= 0
# ifdef FEAT_WINDOWS
if (Y_2_ROW(y) >= tabline_height())
# else
if (y >= 0)
&& Y_2_ROW(y) >= tabline_height()
# endif
)
wp = xy2win(x, y);
if (wp != curwin && wp != NULL) /* If in other than current window */
{

View File

@@ -2294,7 +2294,7 @@ static struct vimoption
{(char_u *)0L, (char_u *)0L}
#endif
},
{"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
{"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
#ifdef FEAT_SPELL
(char_u *)&p_sps, PV_NONE,
{(char_u *)"best", (char_u *)0L}

View File

@@ -666,6 +666,16 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
5,
/**/
4,
/**/
3,
/**/
2,
/**/
1,
/**/
0
};