| To: vim-dev@vim.org |
| Subject: Patch 7.0.018 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.0.018 |
| Problem: VMS: plugins are not loaded on startup. |
| Solution: Remove "**" from the path. (Zoltan Arpadffy) |
| Files: src/main.c |
| |
| |
| |
| |
| |
| *** 564,570 **** |
| --- 564,574 ---- |
| */ |
| if (p_lpl) |
| { |
| + # ifdef VMS /* Somehow VMS doesn't handle the "**". */ |
| + source_runtime((char_u *)"plugin/*.vim", TRUE); |
| + # else |
| source_runtime((char_u *)"plugin/**/*.vim", TRUE); |
| + # endif |
| TIME_MSG("loading plugins"); |
| } |
| #endif |
| |
| |
| |
| *** 668,669 **** |
| --- 668,671 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 18, |
| /**/ |
| |
| -- |
| BLACK KNIGHT: Come on you pansy! |
| [hah] [parry thrust] |
| [ARTHUR chops the BLACK KNIGHT's right arm off] |
| ARTHUR: Victory is mine! [kneeling] |
| We thank thee Lord, that in thy merc- |
| [Black Knight kicks Arthur in the head while he is praying] |
| The Quest for the Holy Grail (Monty Python) |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ download, build and distribute -- http://www.A-A-P.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |