]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-043 v7.2.043
authorBram Moolenaar <Bram@vim.org>
Thu, 20 Nov 2008 09:27:32 +0000 (09:27 +0000)
committerBram Moolenaar <Bram@vim.org>
Thu, 20 Nov 2008 09:27:32 +0000 (09:27 +0000)
src/version.c
src/vim.h

index 6c59034366a2fb84f41ae4a8bafccfe390c757cf..e46b9277bf4996cba47f302e98d706e460b2991b 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    43,
 /**/
     42,
 /**/
index 0421cff285c8e9a5e5be2b5a67bc828e0a1543a8..14405dc557a1aaac82fffabab22f75a430c76637 100644 (file)
--- a/src/vim.h
+++ b/src/vim.h
 #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;