From fdb2d83ea10ccfde03c61d571fa7bc64fc96406e Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 20 Dec 2016 12:49:05 +0000 Subject: [PATCH] Ensure we have an EOL after error messages --- src/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cc b/src/main.cc index 1af549356..82b1c496e 100644 --- a/src/main.cc +++ b/src/main.cc @@ -880,12 +880,12 @@ int main(int argc, char* argv[]) } catch (Kakoune::exception& error) { - write_stderr(format("uncaught exception ({}):\n{}", typeid(error).name(), error.what())); + write_stderr(format("uncaught exception ({}):\n{}\n", typeid(error).name(), error.what())); return -1; } catch (std::exception& error) { - write_stderr(format("uncaught exception ({}):\n{}", typeid(error).name(), error.what())); + write_stderr(format("uncaught exception ({}):\n{}\n", typeid(error).name(), error.what())); return -1; } catch (...)