summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index 1af54935..82b1c496 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 (...)