summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-11-20 09:27:32 +0000
committervimboss <devnull@localhost>2008-11-20 09:27:32 +0000
commit53a8c53233d11f94427082bfef063c81e8425c79 (patch)
tree415badd303f19f99e0f77f41583b49873b053017
parent59ed24f1bad511c019bc159c63d7b3f5c6b5fb31 (diff)
downloadvim-53a8c53233d11f94427082bfef063c81e8425c79.tar.gz
updated for version 7.2-043v7.2.043v7-2-043
-rw-r--r--src/version.c2
-rw-r--r--src/vim.h12
2 files changed, 11 insertions, 3 deletions
diff --git a/src/version.c b/src/version.c
index 6c590343..e46b9277 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 43,
+/**/
42,
/**/
41,
diff --git a/src/vim.h b/src/vim.h
index 0421cff2..14405dc5 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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;