nix repl: Reset the terminal on exceptional exits

This commit is contained in:
Eelco Dolstra 2021-11-26 13:10:28 +01:00
parent b653fb9ccf
commit 3ef66cd23a

View file

@ -279,6 +279,7 @@ bool NixRepl::getLine(string & input, const std::string &prompt)
};
setupSignals();
Finally resetTerminal([&]() { rl_deprep_terminal(); });
char * s = readline(prompt.c_str());
Finally doFree([&]() { free(s); });
restoreSignals();