]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.043
- new
[packages/vim.git] / 7.2.043
CommitLineData
65bfde4c
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.043
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.043
11Problem: VMS: Too many characters are escaped in filename and shell
12 commands.
13Solution: Escape fewer characters. (Zoltan Arpadffy)
14Files: 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--
72In his lifetime van Gogh painted 486 oil paintings. Oddly enough, 8975
73of 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.030387 seconds and 4 git commands to generate.