From 175ec585200315fb32696fd4535769dea9c0d9d3 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 2 Jan 2016 11:35:03 -0800 Subject: Wording change in error_trace. * eval.c (error_trace): Change "possibly triggered by" to "during evaluation of". --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eval.c b/eval.c index 384408af..438d8476 100644 --- a/eval.c +++ b/eval.c @@ -256,10 +256,10 @@ void error_trace(val exsym, val exvals, val out_stream, val prefix) if (first) { if (origin) - format(out_stream, lit("~a possibly triggered by form ~!~s\n"), + format(out_stream, lit("~a during evaluation of form ~!~s\n"), prefix, last, nao); else if (!uw_exception_subtype_p(exsym, eval_error_s)) - format(out_stream, lit("~a possibly triggered at ~a by form ~!~s\n"), + format(out_stream, lit("~a during evaluation at ~a of form ~!~s\n"), prefix, info, last, nao); } -- cgit v1.2.3