summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-06-16 14:01:43 +0000
committerBram Moolenaar <Bram@vim.org>2009-06-16 14:01:43 +0000
commit746ebd3b6a2ad53dc0caf0872e7895d0cab966e1 (patch)
tree7eb48e9b5ebdd7e17e79db2418bca9ddde158b0e /src/globals.h
parent8b38e2416c1c56e38fa85ad048a4e1a3df851a43 (diff)
updated for version 7.2-203v7.2.203
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 8fad523173..8f373f69fc 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -539,6 +539,10 @@ EXTERN win_T *prevwin INIT(= NULL); /* previous window */
EXTERN win_T *curwin; /* currently active window */
+#ifdef FEAT_AUTOCMD
+EXTERN win_T *aucmd_win; /* window used in aucmd_prepbuf() */
+#endif
+
/*
* The window layout is kept in a tree of frames. topframe points to the top
* of the tree.