1
0
forked from aniani/vim

patch 8.1.0334: 'autowrite' takes effect when buffer is not to be written

Problem:    'autowrite' takes effect when buffer is not to be written.
Solution:   Don't write buffers that are not supposed to be written. (Even Q
            Jones, closes #3391)  Add tests for 'autowrite'.
This commit is contained in:
Bram Moolenaar
2018-08-30 13:07:17 +02:00
parent 92c1b69641
commit 8c9e7b00f6
3 changed files with 42 additions and 2 deletions

View File

@@ -2041,7 +2041,7 @@ autowrite(buf_T *buf, int forceit)
}
/*
* flush all buffers, except the ones that are readonly
* Flush all buffers, except the ones that are readonly or are never written.
*/
void
autowrite_all(void)
@@ -2051,7 +2051,7 @@ autowrite_all(void)
if (!(p_aw || p_awa) || !p_write)
return;
FOR_ALL_BUFFERS(buf)
if (bufIsChanged(buf) && !buf->b_p_ro)
if (bufIsChanged(buf) && !buf->b_p_ro && !bt_dontwrite(buf))
{
bufref_T bufref;