]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.043
- updated to 7.2.102
[packages/vim.git] / 7.2.043
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.043
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.043
11 Problem:    VMS: Too many characters are escaped in filename and shell
12             commands.
13 Solution:   Escape fewer characters. (Zoltan Arpadffy)
14 Files:      src/vim.h
15
16
17 *** ../vim-7.2.042/src/vim.h    Sun Nov  9 13:43:25 2008
18 --- src/vim.h   Fri Nov 14 21:41:17 2008
19 ***************
20 *** 341,348 ****
21   #ifdef BACKSLASH_IN_FILENAME
22   # define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<")
23   #else
24 ! # define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<")
25 ! # define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&")
26   #endif
27   
28   #define NUMBUFLEN 30      /* length of a buffer to store a number in ASCII */
29 --- 341,354 ----
30   #ifdef BACKSLASH_IN_FILENAME
31   # define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<")
32   #else
33 ! # ifdef VMS
34 !     /* VMS allows a lot of characters in the file name */
35 ! #  define PATH_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'\"|!")
36 ! #  define SHELL_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'|!()&")
37 ! # else
38 ! #  define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<")
39 ! #  define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&")
40 ! # endif
41   #endif
42   
43   #define NUMBUFLEN 30      /* length of a buffer to store a number in ASCII */
44 ***************
45 *** 370,376 ****
46      * Define __w64 as an empty token for everything but MSVC 7.x or later.
47      */
48   # if !defined(_MSC_VER)       || (_MSC_VER < 1300)
49 ! #  define __w64 
50   # endif
51   typedef unsigned long __w64   long_u;
52   typedef                long __w64     long_i;
53 --- 376,382 ----
54      * Define __w64 as an empty token for everything but MSVC 7.x or later.
55      */
56   # if !defined(_MSC_VER)       || (_MSC_VER < 1300)
57 ! #  define __w64
58   # endif
59   typedef unsigned long __w64   long_u;
60   typedef                long __w64     long_i;
61 *** ../vim-7.2.042/src/version.c        Sat Nov 15 16:05:30 2008
62 --- src/version.c       Thu Nov 20 10:23:51 2008
63 ***************
64 *** 678,679 ****
65 --- 678,681 ----
66   {   /* Add new patch number below this line */
67 + /**/
68 +     43,
69   /**/
70
71 -- 
72 In his lifetime van Gogh painted 486 oil paintings. Oddly enough, 8975
73 of them are to be found in the United States.
74
75  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
76 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
77 \\\        download, build and distribute -- http://www.A-A-P.org        ///
78  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.071373 seconds and 3 git commands to generate.