diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-06-19 01:27:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-06-19 01:27:34 +0200 |
commit | 26f3c637fc2072ab403d6c77999ee5840a3196f8 (patch) | |
tree | 337889a673fd155543a11025d9d3514686691f36 | |
parent | d44347f1e7791ead2d90b1fda06d9f4e325d912e (diff) | |
download | vim-git-26f3c637fc2072ab403d6c77999ee5840a3196f8.tar.gz |
updated for version 7.3.222v7.3.222
Problem: Warning for building GvimExt.
Solution: Comment-out the DESCRIPTION line. (Mike Williams)
-rw-r--r-- | src/GvimExt/gvimext.def | 2 | ||||
-rw-r--r-- | src/GvimExt/gvimext_ming.def | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/src/GvimExt/gvimext.def b/src/GvimExt/gvimext.def index 459d10369..e6d66f436 100644 --- a/src/GvimExt/gvimext.def +++ b/src/GvimExt/gvimext.def @@ -1,7 +1,7 @@ ;gvimdef.def : Declares the module parameters for the DLL. LIBRARY gvimext -DESCRIPTION 'Vim Shell Extension' +; DESCRIPTION 'Vim Shell Extension' EXPORTS DllCanUnloadNow private diff --git a/src/GvimExt/gvimext_ming.def b/src/GvimExt/gvimext_ming.def index 0b47d7dea..b96e1d399 100644 --- a/src/GvimExt/gvimext_ming.def +++ b/src/GvimExt/gvimext_ming.def @@ -3,7 +3,7 @@ ;Hence this is the same file as gvimext.def with private removed LIBRARY gvimext -DESCRIPTION 'Vim Shell Extension build with MinGW' +; DESCRIPTION 'Vim Shell Extension build with MinGW' EXPORTS DllCanUnloadNow = DllCanUnloadNow@0 diff --git a/src/version.c b/src/version.c index 9832bef13..0bd91defd 100644 --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 222, +/**/ 221, /**/ 220, |