forked from aniani/vim
updated for version 7.0134
This commit is contained in:
@@ -1844,8 +1844,8 @@ installtutor: $(DEST_VIM) $(DEST_RT) $(DEST_TUTOR)
|
||||
# spell file is there.
|
||||
installspell: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
|
||||
if test -f $(SPELLSOURCE)/en.latin1.spl; then \
|
||||
$(INSTALL_DATA) $(SPELLSOURCE)/*.spl *.vim $(DEST_SPELL); \
|
||||
chmod $(HELPMOD) $(DEST_SPELL)/*.spl *.vim; \
|
||||
$(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL); \
|
||||
chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim; \
|
||||
fi
|
||||
|
||||
# install helper program xxd
|
||||
|
||||
12
src/eval.c
12
src/eval.c
@@ -11944,6 +11944,14 @@ f_prevnonblank(argvars, rettv)
|
||||
rettv->vval.v_number = lnum;
|
||||
}
|
||||
|
||||
#ifdef HAVE_STDARG_H
|
||||
/* This dummy va_list is here because:
|
||||
* - passing a NULL pointer doesn't work when va_list isn't a pointer
|
||||
* - locally in the function results in a "used before set" warning
|
||||
* - using va_start() to initialize it gives "function with fixed args" error */
|
||||
static va_list ap;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* "printf()" function
|
||||
*/
|
||||
@@ -11961,10 +11969,6 @@ f_printf(argvars, rettv)
|
||||
char_u *s;
|
||||
int saved_did_emsg = did_emsg;
|
||||
char *fmt;
|
||||
va_list ap; /* dummy */
|
||||
|
||||
/* Avoid warning for "ap" used before set; it's unused. */
|
||||
va_start(ap, rettv);
|
||||
|
||||
/* Get the required length, allocate the buffer and do it for real. */
|
||||
did_emsg = FALSE;
|
||||
|
||||
@@ -120,7 +120,7 @@ gg:/^compdicstart/+1,/^compdicend/-1w! Xtest.dic
|
||||
1GyG:q
|
||||
:$put
|
||||
/^comptest:
|
||||
:for i in range(12)
|
||||
:for i in range(11)
|
||||
normal ]smm
|
||||
let str = spellbadword()
|
||||
$put =str
|
||||
@@ -481,9 +481,11 @@ word util
|
||||
wordutil wordutils wordutilize
|
||||
pro pro-ok
|
||||
bork borkbork borkborkbork borkborkborkbork borkborkborkborkbork
|
||||
borkborkborkborkborkbork
|
||||
tomato tomatotomato tomatotomatotomato
|
||||
startend endstart endend startstart
|
||||
startend endstart endend startstart wordend
|
||||
startword startwordword wordstart startwordend startwordwordend
|
||||
startwordwordwordend startwordwordwordwordend
|
||||
prebork preborkprebork preborkborkprebork preborkpreborkbork
|
||||
borkpreborkpreborkbork
|
||||
|
||||
|
||||
@@ -87,23 +87,21 @@ wordutilize
|
||||
['word utilize', 'wordutils', 'wordutil']
|
||||
pro
|
||||
['bork', 'end', 'word']
|
||||
borkborkborkbork
|
||||
['borkbork borkbork', 'borkborkbork bork', 'bork borkborkbork']
|
||||
borkborkborkborkbork
|
||||
['borkbork borkborkbork', 'borkborkbork borkbork', 'bork borkborkbork bork']
|
||||
tomatotomato
|
||||
['tomatotomato', 'tomato tomato']
|
||||
borkborkborkborkborkbork
|
||||
['borkbork borkborkborkbork', 'borkborkbork borkborkbork', 'borkborkborkborkbork bork']
|
||||
tomatotomatotomato
|
||||
['tomatotomatotomato', 'tomato tomatotomato', 'tomatotomato tomato']
|
||||
['tomato tomatotomato', 'tomatotomato tomato', 'tomato tomato tomato']
|
||||
endstart
|
||||
['end start', 'start']
|
||||
endend
|
||||
['end end', 'end']
|
||||
startstart
|
||||
['start start']
|
||||
wordend
|
||||
['word end', 'wordword', 'word']
|
||||
wordstart
|
||||
['word start', 'bork start']
|
||||
startwordwordend
|
||||
['startwordword end', 'startwordword', 'start wordword end']
|
||||
startwordwordwordwordend
|
||||
['startwordwordwordword end', 'startwordwordwordword', 'start wordwordwordword end']
|
||||
borkpreborkpreborkbork
|
||||
['bork preborkpreborkbork', 'borkpreborkprebork bork', 'borkprebork preborkbork']
|
||||
['borkpreborkprebork bork', 'borkprebork preborkbork', 'bork preborkpreborkbork']
|
||||
|
||||
@@ -36,5 +36,5 @@
|
||||
#define VIM_VERSION_NODOT "vim70aa"
|
||||
#define VIM_VERSION_SHORT "7.0aa"
|
||||
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
|
||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Aug 22)"
|
||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Aug 22, compiled "
|
||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Aug 23)"
|
||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Aug 23, compiled "
|
||||
|
||||
Reference in New Issue
Block a user