]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-135 v7.2.135
authorBram Moolenaar <Bram@vim.org>
Wed, 11 Mar 2009 14:10:38 +0000 (14:10 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 11 Mar 2009 14:10:38 +0000 (14:10 +0000)
src/ex_docmd.c
src/version.c

index c730d761bb4847cb655ec201f93fc0201eb11195..4925695e4c5a7e82d26ec3233d25d4e6bac44099 100644 (file)
@@ -5124,7 +5124,11 @@ uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
            }
 
            vim_free(cmd->uc_rep);
-           cmd->uc_rep = 0;
+           cmd->uc_rep = NULL;
+#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
+           vim_free(cmd->uc_compl_arg);
+           cmd->uc_compl_arg = NULL;
+#endif
            break;
        }
 
@@ -5941,7 +5945,7 @@ do_ucmd(eap)
     for (;;)
     {
        p = cmd->uc_rep;    /* source */
-       q = buf;            /* destinateion */
+       q = buf;            /* destination */
        totlen = 0;
 
        for (;;)
@@ -7846,6 +7850,9 @@ free_cd_dir()
 {
     vim_free(prev_dir);
     prev_dir = NULL;
+
+    vim_free(globaldir);
+    globaldir = NULL;
 }
 #endif
 
index c404e14392c9f0b14e0744c885c1286c3721f1af..8d20bf15c5e79c4d8f9f346b4807e4ef7b678ed8 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    135,
 /**/
     134,
 /**/