mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.1-289
This commit is contained in:
@@ -751,7 +751,7 @@ vim_mem_profile_dump()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Note: if unsinged is 16 bits we can only allocate up to 64K with alloc().
|
* Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
|
||||||
* Use lalloc for larger blocks.
|
* Use lalloc for larger blocks.
|
||||||
*/
|
*/
|
||||||
char_u *
|
char_u *
|
||||||
@@ -1082,7 +1082,11 @@ free_all_mem()
|
|||||||
win_free_all();
|
win_free_all();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Free all buffers. */
|
/* Free all buffers. Reset 'autochdir' to avoid accessing things that
|
||||||
|
* were freed already. */
|
||||||
|
#ifdef FEAT_AUTOCHDIR
|
||||||
|
p_acd = FALSE;
|
||||||
|
#endif
|
||||||
for (buf = firstbuf; buf != NULL; )
|
for (buf = firstbuf; buf != NULL; )
|
||||||
{
|
{
|
||||||
nextbuf = buf->b_next;
|
nextbuf = buf->b_next;
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
289,
|
||||||
/**/
|
/**/
|
||||||
288,
|
288,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user