diff options
| author | Maxime Coste <mawww@kakoune.org> | 2018-05-13 17:59:01 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2018-05-14 08:23:00 +1000 |
| commit | 75eb293f986f5674041159c714e1fffbe773b04b (patch) | |
| tree | 9ac91714c9832b8da3ba8d25f01a515af03ac3cd /src/buffer.cc | |
| parent | b204e773d461233aa9b106d32d051333865b2d1b (diff) | |
Rename Context::Flags::Transient to Context::Flags::Draft
Draft is well establish and all draft context are transient.
Diffstat (limited to 'src/buffer.cc')
| -rw-r--r-- | src/buffer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.cc b/src/buffer.cc index 79660c9b..d82b4627 100644 --- a/src/buffer.cc +++ b/src/buffer.cc @@ -695,7 +695,7 @@ void Buffer::run_hook_in_own_context(StringView hook_name, StringView param, Str return; InputHandler hook_handler{{ *this, Selection{} }, - Context::Flags::Transient, + Context::Flags::Draft, std::move(client_name)}; hooks().run_hook(hook_name, param, hook_handler.context()); } |
