diff options
author | Ben Burdette <bburdette@gmail.com> | 2022-06-10 12:22:36 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2022-06-10 12:22:36 -0600 |
commit | 49ff4ef6373f4aaeb6194fb4a195d3037c74312e (patch) | |
tree | 359434cc5451fcc1debd5c2c6eee11bf0b4258a5 /src/libexpr | |
parent | 8cf6ae86648336bd67a1555302b21576b790c368 (diff) |
remove unused parameter
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 60214453a..28256ec5c 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -840,7 +840,7 @@ void EvalState::runDebugRepl(const Error * error, const Env & env, const Expr & if (trylevel > 0 && error->info().level != lvlInfo) printError("This exception occurred in a try clause. use " ANSI_GREEN "--ignore-try" ANSI_NORMAL " to skip these.\n"); - printError(ANSI_BOLD "Starting REPL to allow you to inspect the current state of the evaluator.\n" ANSI_NORMAL, error->what()); + printError(ANSI_BOLD "Starting REPL to allow you to inspect the current state of the evaluator.\n" ANSI_NORMAL); } auto se = getStaticEnv(expr); |