# HG changeset patch # User Christian Brabandt # Date 1529576105 -7200 # Node ID fba38a3491f5b5fdeca90d11afb0ce4e0a48579d # Parent 2a2f795f7bbcb89f12ec733fa12832ecfe7a460b patch 8.1.0092: prompt buffer test fails commit https://github.com/vim/vim/commit/71ef1ba5e996f34d3e0acbe1d89c4c6bfa5e98ba Author: Bram Moolenaar Date: Thu Jun 21 12:07:04 2018 +0200 patch 8.1.0092: prompt buffer test fails Problem: Prompt buffer test fails. Solution: Set 'nomodified' before closing the window. (Ozaki Kiichi, closes #3051 diff --git a/src/testdir/test_prompt_buffer.vim b/src/testdir/test_prompt_buffer.vim --- a/src/testdir/test_prompt_buffer.vim +++ b/src/testdir/test_prompt_buffer.vim @@ -24,6 +24,8 @@ func WriteScript(name) call writefile([ \ 'func TextEntered(text)', \ ' if a:text == "exit"', + \ ' " Reset &modified to allow the buffer to be closed.', + \ ' set nomodified', \ ' stopinsert', \ ' close', \ ' else', diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 92, +/**/ 91, /**/ 90,