From 2cc93184012d58475cb1a6236ec70174aaedc2f0 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Oct 2006 19:56:03 +0000 Subject: updated for version 7.0-131 --- src/memline.c | 10 ++++++---- src/version.c | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/memline.c b/src/memline.c index 5c55e70f2c..5d43dc3f0e 100644 --- a/src/memline.c +++ b/src/memline.c @@ -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; diff --git a/src/version.c b/src/version.c index 87f74ac1d9..6703e79840 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 131, /**/ 130, /**/ -- cgit v1.2.3