diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-08-29 10:01:43 +0700 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-08-29 10:01:43 +0700 |
| commit | 1709886873b9c655ca0183a0711adf61709bb29f (patch) | |
| tree | 1b24c7631ad7d9af8a8fc5ce7656bcbcdcbbe4d8 /src/client_manager.cc | |
| parent | 24234dffa3035a471126173d478d5ae215fb620e (diff) | |
avoid literal eol in status lines, replace them with another symbol
Diffstat (limited to 'src/client_manager.cc')
| -rw-r--r-- | src/client_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client_manager.cc b/src/client_manager.cc index bec1b2ea..fd4cfe1a 100644 --- a/src/client_manager.cc +++ b/src/client_manager.cc @@ -64,7 +64,7 @@ Client* ClientManager::create_client(std::unique_ptr<UserInterface>&& ui, int pi } catch (Kakoune::runtime_error& error) { - client->context().print_status({ error.what().str(), get_face("Error") }); + client->context().print_status({ fix_atom_text(error.what().str()), get_face("Error") }); client->context().hooks().run_hook("RuntimeError", error.what(), client->context()); } |
