forked from aniani/vim
updated for version 7.0-028
This commit is contained in:
parent
35c9291be7
commit
654b5b5572
@ -183,6 +183,9 @@
|
|||||||
/* Define if you have the ANSI C header files. */
|
/* Define if you have the ANSI C header files. */
|
||||||
/* #undef STDC_HEADERS */
|
/* #undef STDC_HEADERS */
|
||||||
|
|
||||||
|
/* added by David Sanders */
|
||||||
|
#define HAVE_STDARG_H 1
|
||||||
|
|
||||||
/* instead, we check a few STDC things ourselves */
|
/* instead, we check a few STDC things ourselves */
|
||||||
#define HAVE_STDLIB_H 1
|
#define HAVE_STDLIB_H 1
|
||||||
#undef HAVE_STRING_H /* On EMX it is better to use strings.h */
|
#undef HAVE_STRING_H /* On EMX it is better to use strings.h */
|
||||||
|
@ -4971,7 +4971,8 @@ mch_expand_wildcards(num_pat, pat, num_file, file, flags)
|
|||||||
if (((*file)[*num_file] = alloc(len + 2)) != NULL)
|
if (((*file)[*num_file] = alloc(len + 2)) != NULL)
|
||||||
{
|
{
|
||||||
STRCPY((*file)[*num_file], p);
|
STRCPY((*file)[*num_file], p);
|
||||||
if (!after_pathsep((*file)[*num_file] + len))
|
if (!after_pathsep((*file)[*num_file],
|
||||||
|
(*file)[*num_file] + len))
|
||||||
{
|
{
|
||||||
(*file)[*num_file][len] = psepc;
|
(*file)[*num_file][len] = psepc;
|
||||||
(*file)[*num_file][len + 1] = NUL;
|
(*file)[*num_file][len + 1] = NUL;
|
||||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
28,
|
||||||
/**/
|
/**/
|
||||||
27,
|
27,
|
||||||
/**/
|
/**/
|
||||||
|
@ -1983,7 +1983,7 @@ typedef int proftime_T; /* dummy for function prototypes */
|
|||||||
/* values for vim_handle_signal() that are not a signal */
|
/* values for vim_handle_signal() that are not a signal */
|
||||||
#define SIGNAL_BLOCK -1
|
#define SIGNAL_BLOCK -1
|
||||||
#define SIGNAL_UNBLOCK -2
|
#define SIGNAL_UNBLOCK -2
|
||||||
#if !defined(UNIX) && !defined(VMS)
|
#if !defined(UNIX) && !defined(VMS) && !defined(OS2)
|
||||||
# define vim_handle_signal(x) 0
|
# define vim_handle_signal(x) 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user