mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-155
This commit is contained in:
parent
33741a0f37
commit
07d0677855
@ -1678,6 +1678,14 @@ u_freebranch(buf, uhp, uhpp)
|
|||||||
{
|
{
|
||||||
u_header_T *tofree, *next;
|
u_header_T *tofree, *next;
|
||||||
|
|
||||||
|
/* If this is the top branch we may need to use u_freeheader() to update
|
||||||
|
* all the pointers. */
|
||||||
|
if (uhp == buf->b_u_oldhead)
|
||||||
|
{
|
||||||
|
u_freeheader(buf, uhp, uhpp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (uhp->uh_alt_prev != NULL)
|
if (uhp->uh_alt_prev != NULL)
|
||||||
uhp->uh_alt_prev->uh_alt_next = NULL;
|
uhp->uh_alt_prev->uh_alt_next = NULL;
|
||||||
|
|
||||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
155,
|
||||||
/**/
|
/**/
|
||||||
154,
|
154,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user