summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-04-01 12:53:43 +0000
committervimboss <devnull@localhost>2008-04-01 12:53:43 +0000
commit0d88487d95bec0e4b8258b4135ad5e5486c0dd29 (patch)
treeaf812cf3064d123d0546135555db227005e0ff93
parent2e1e1b4be344b26b739fd20e61fde6c9a62b1404 (diff)
downloadvim-0d88487d95bec0e4b8258b4135ad5e5486c0dd29.tar.gz
updated for version 7.1-289v7.1.289v7-1-289
-rw-r--r--src/misc2.c8
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 2 deletions
diff --git a/src/misc2.c b/src/misc2.c
index fd0405fd..6a562d88 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -751,7 +751,7 @@ vim_mem_profile_dump()
#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.
*/
char_u *
@@ -1082,7 +1082,11 @@ free_all_mem()
win_free_all();
#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; )
{
nextbuf = buf->b_next;
diff --git a/src/version.c b/src/version.c
index c2f7e97d..f8579033 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 289,
+/**/
288,
/**/
287,