diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-11-20 09:27:32 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-11-20 09:27:32 +0000 |
commit | 03cd93a576cdebf5fe8bbac213e8a7fb8d70b419 (patch) | |
tree | 415badd303f19f99e0f77f41583b49873b053017 /src/vim.h | |
parent | bf9065c92535527f773804eeaebf21e40c726ad8 (diff) | |
download | vim-git-03cd93a576cdebf5fe8bbac213e8a7fb8d70b419.tar.gz |
updated for version 7.2-043v7.2.043
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -341,8 +341,14 @@ #ifdef BACKSLASH_IN_FILENAME # define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<") #else -# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<") -# define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&") +# ifdef VMS + /* 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 #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. */ # if !defined(_MSC_VER) || (_MSC_VER < 1300) -# define __w64 +# define __w64 # endif typedef unsigned long __w64 long_u; typedef long __w64 long_i; |