mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0-131
This commit is contained in:
@@ -1400,8 +1400,9 @@ recover_names(fname, list, nr)
|
|||||||
names[0] = vim_strsave((char_u *)"*.sw?");
|
names[0] = vim_strsave((char_u *)"*.sw?");
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#ifdef UNIX
|
#if defined(UNIX) || defined(WIN3264)
|
||||||
/* for Unix names starting with a dot are special */
|
/* For Unix names starting with a dot are special. MS-Windows
|
||||||
|
* supports this too, on some file systems. */
|
||||||
names[1] = vim_strsave((char_u *)".*.sw?");
|
names[1] = vim_strsave((char_u *)".*.sw?");
|
||||||
names[2] = vim_strsave((char_u *)".sw?");
|
names[2] = vim_strsave((char_u *)".sw?");
|
||||||
num_names = 3;
|
num_names = 3;
|
||||||
@@ -1430,8 +1431,9 @@ recover_names(fname, list, nr)
|
|||||||
names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
|
names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#ifdef UNIX
|
#if defined(UNIX) || defined(WIN3264)
|
||||||
/* for Unix names starting with a dot are special */
|
/* For Unix names starting with a dot are special. MS-Windows
|
||||||
|
* supports this too, on some file systems. */
|
||||||
names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
|
names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
|
||||||
names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
|
names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
|
||||||
num_names = 3;
|
num_names = 3;
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
131,
|
||||||
/**/
|
/**/
|
||||||
130,
|
130,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user