summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-09 23:40:45 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-09 23:40:45 +0200
commit5c71994f4ee5f87d4cce990dbc9684c70b1e108b (patch)
tree54d709f577451315f508421842acd40c5d8776f1 /src/globals.h
parent32b808a4bdf35b0dea63c735702a591e5869fecd (diff)
patch 7.4.2015v7.4.2015
Problem: When a file gets a name when writing it 'acd' is not effective. (Dan Church) Solution: Invoke DO_AUTOCHDIR after writing the file. (Allen Haim, closes #777, closes #803) Add test_autochdir() to enable 'acd' before "starting" is reset.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 68bf36f582..879255cd57 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -635,6 +635,9 @@ EXTERN int exiting INIT(= FALSE);
EXTERN int really_exiting INIT(= FALSE);
/* TRUE when we are sure to exit, e.g., after
* a deadly signal */
+#if defined(FEAT_AUTOCHDIR)
+EXTERN int test_autochdir INIT(= FALSE);
+#endif
#if defined(EXITFREE)
EXTERN int entered_free_all_mem INIT(= FALSE);
/* TRUE when in or after free_all_mem() */