]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.018
- new
[packages/vim.git] / 7.0.018
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.018
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.0.018
11 Problem:    VMS: plugins are not loaded on startup.
12 Solution:   Remove "**" from the path. (Zoltan Arpadffy)
13 Files:      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 -- 
43 BLACK KNIGHT:  Come on you pansy!
44     [hah] [parry thrust]
45     [ARTHUR chops the BLACK KNIGHT's right arm off]
46 ARTHUR:        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.026422 seconds and 3 git commands to generate.