summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-06-20 16:51:47 +0000
committerBram Moolenaar <Bram@vim.org>2006-06-20 16:51:47 +0000
commitc1cb78cb1176ca2e01aca3befc2d83c85b8a5541 (patch)
tree07acce60f012199fb5eb5626a7c90750cb1633db /src/main.c
parent5fffc13406a3f95771727cdb1d87320dd8f26fdf (diff)
updated for version 7.0-018v7.0.018
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 2a90cc3580..86558e0f47 100644
--- a/src/main.c
+++ b/src/main.c
@@ -564,7 +564,11 @@ main
*/
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