]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.034
- new
[packages/vim.git] / 6.3.034
CommitLineData
c9e2e521
AG
1To: vim-dev@vim.org
2Subject: Patch 6.3.034
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 6.3.034
11Problem: VMS: crash when using ":help".
12Solution: Avoid using "tags-??", some Open VMS systems can't handle the "?"
13 wildcard. (Zoltan Arpadffy)
14Files: src/tag.c
15
16
17*** ../vim-6.3.033/src/tag.c Wed Jun 9 14:56:26 2004
18--- src/tag.c Sat Nov 20 14:50:43 2004
19***************
20*** 2382,2388 ****
21--- 2382,2396 ----
22 ga_init2(&tag_fnames, (int)sizeof(char_u *), 10);
23 do_in_runtimepath((char_u *)
24 #ifdef FEAT_MULTI_LANG
25+ # ifdef VMS
26+ /* Functions decc$to_vms() and decc$translate_vms() crash
27+ * on some VMS systems with wildcards "??". Seems ECO
28+ * patches do fix the problem in C RTL, but we can't use
29+ * an #ifdef for that. */
30+ "doc/tags doc/tags-*"
31+ # else
32 "doc/tags doc/tags-??"
33+ # endif
34 #else
35 "doc/tags"
36 #endif
37*** ../vim-6.3.033/src/version.c Thu Nov 18 10:47:49 2004
38--- src/version.c Mon Nov 22 10:03:20 2004
39***************
40*** 643,644 ****
41--- 643,646 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 34,
45 /**/
46
47--
48There can't be a crisis today, my schedule is already full.
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
53 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.077746 seconds and 4 git commands to generate.