Skip to content

Commit

Permalink
updated for version 7.2-135
Browse files Browse the repository at this point in the history
  • Loading branch information
vimboss committed Mar 11, 2009
1 parent cd7a1f6 commit 8745e43
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/ex_docmd.c
Expand Up @@ -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;
}

Expand Down Expand Up @@ -5941,7 +5945,7 @@ do_ucmd(eap)
for (;;)
{
p = cmd->uc_rep; /* source */
q = buf; /* destinateion */
q = buf; /* destination */
totlen = 0;

for (;;)
Expand Down Expand Up @@ -7846,6 +7850,9 @@ free_cd_dir()
{
vim_free(prev_dir);
prev_dir = NULL;

vim_free(globaldir);
globaldir = NULL;
}
#endif

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -676,6 +676,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
135,
/**/
134,
/**/
Expand Down

0 comments on commit 8745e43

Please sign in to comment.