# HG changeset patch # User vimboss # Date 1150822307 0 # Node ID d8dbf7d55c5e9ac3e345eb1b2b86986be3582fdd # Parent e6bd96f2d7b81a8963c9c8dcfd9e2b3f08a9f0e4 updated for version 7.0-018 diff --git a/src/main.c b/src/main.c --- 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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 18, +/**/ 17, /**/ 16,