diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-06 19:02:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-06 19:02:45 +0200 |
commit | 362ce4804819f39d5a4a21923577f3ccc59c8ad5 (patch) | |
tree | 7c3d79ed0e4334faa016c4ecaa97b3a00183b608 /src/version.c | |
parent | 3b53dfb3b0743af7d6ae381a766e1bb2018fd01e (diff) | |
download | vim-362ce4804819f39d5a4a21923577f3ccc59c8ad5.zip |
updated for version 7.3.545
Problem: When closing a window or buffer autocommands may close it too,
causing problems for where the autocommand was invoked from.
Solution: Add the w_closing and b_closing flags. When set disallow ":q" and
":close" to prevent recursive closing.
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 8f98f51fe..17c2d6417 100644 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 545, +/**/ 544, /**/ 543, |