0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.2-043

This commit is contained in:
Bram Moolenaar 2008-11-20 09:27:32 +00:00
parent bf9065c925
commit 03cd93a576
2 changed files with 11 additions and 3 deletions

View File

@ -676,6 +676,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 */
/**/
43,
/**/ /**/
42, 42,
/**/ /**/

View File

@ -341,8 +341,14 @@
#ifdef BACKSLASH_IN_FILENAME #ifdef BACKSLASH_IN_FILENAME
# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<") # define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<")
#else #else
# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<") # ifdef VMS
# define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&") /* VMS allows a lot of characters in the file name */
# define PATH_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'\"|!")
# define SHELL_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'|!()&")
# else
# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<")
# define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&")
# endif
#endif #endif
#define NUMBUFLEN 30 /* length of a buffer to store a number in ASCII */ #define NUMBUFLEN 30 /* length of a buffer to store a number in ASCII */
@ -370,7 +376,7 @@ typedef __int64 long_i;
* Define __w64 as an empty token for everything but MSVC 7.x or later. * Define __w64 as an empty token for everything but MSVC 7.x or later.
*/ */
# if !defined(_MSC_VER) || (_MSC_VER < 1300) # if !defined(_MSC_VER) || (_MSC_VER < 1300)
# define __w64 # define __w64
# endif # endif
typedef unsigned long __w64 long_u; typedef unsigned long __w64 long_u;
typedef long __w64 long_i; typedef long __w64 long_i;