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?");
|
||||
# endif
|
||||
#endif
|
||||
#ifdef UNIX
|
||||
/* for Unix names starting with a dot are special */
|
||||
#if defined(UNIX) || defined(WIN3264)
|
||||
/* 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[2] = vim_strsave((char_u *)".sw?");
|
||||
num_names = 3;
|
||||
@@ -1430,8 +1431,9 @@ recover_names(fname, list, nr)
|
||||
names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
|
||||
# endif
|
||||
#endif
|
||||
#ifdef UNIX
|
||||
/* for Unix names starting with a dot are special */
|
||||
#if defined(UNIX) || defined(WIN3264)
|
||||
/* 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[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
|
||||
num_names = 3;
|
||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
131,
|
||||
/**/
|
||||
130,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user