diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-06-24 14:25:49 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-06-24 14:25:49 +0000 |
commit | 782027ee289dfd55eb22c1ae8e6ff3645be90c3a (patch) | |
tree | 2b906c76f87dbb8c660bfab87c4fe21d0ed7b790 | |
parent | 85388b56521ea68a4f6f9027c3c6ccf0b305dd03 (diff) | |
download | vim-782027ee289dfd55eb22c1ae8e6ff3645be90c3a.zip |
updated for version 7.2-211
-rw-r--r-- | src/misc1.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c index 2145124d1..03b638daa 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -9193,7 +9193,7 @@ gen_expand_wildcards(num_pat, pat, num_file, file, flags) else if (vim_strpbrk(p, (char_u *)"$~") != NULL) { vim_free(p); - ga_clear(&ga); + ga_clear_strings(&ga); i = mch_expand_wildcards(num_pat, pat, num_file, file, flags); recursive = FALSE; diff --git a/src/version.c b/src/version.c index 145ef2e6d..6d92a0360 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 211, +/**/ 210, /**/ 209, |