]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.018
- new
[packages/vim.git] / 7.0.018
CommitLineData
142b4b8e
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.018
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.0.018
11Problem: VMS: plugins are not loaded on startup.
12Solution: Remove "**" from the path. (Zoltan Arpadffy)
13Files: src/main.c
14
15
16*** ../vim-7.0.017/src/main.c Wed May 3 23:28:15 2006
17--- src/main.c Mon Jun 19 10:54:40 2006
18***************
19*** 564,570 ****
20--- 564,574 ----
21 */
22 if (p_lpl)
23 {
24+ # ifdef VMS /* Somehow VMS doesn't handle the "**". */
25+ source_runtime((char_u *)"plugin/*.vim", TRUE);
26+ # else
27 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
28+ # endif
29 TIME_MSG("loading plugins");
30 }
31 #endif
32*** ../vim-7.0.017/src/version.c Sat May 13 17:26:10 2006
33--- src/version.c Mon Jun 19 10:55:29 2006
34***************
35*** 668,669 ****
36--- 668,671 ----
37 { /* Add new patch number below this line */
38+ /**/
39+ 18,
40 /**/
41
42--
43BLACK KNIGHT: Come on you pansy!
44 [hah] [parry thrust]
45 [ARTHUR chops the BLACK KNIGHT's right arm off]
46ARTHUR: Victory is mine! [kneeling]
47 We thank thee Lord, that in thy merc-
48 [Black Knight kicks Arthur in the head while he is praying]
49 The Quest for the Holy Grail (Monty Python)
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ download, build and distribute -- http://www.A-A-P.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.111658 seconds and 4 git commands to generate.