diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-02 11:35:03 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-02 11:35:03 -0800 |
commit | 175ec585200315fb32696fd4535769dea9c0d9d3 (patch) | |
tree | 6a050d116c0cb75de8914a8bd7e0ae4209e7636b /eval.c | |
parent | e694dde54a71cad3e2df5b28400aac8c7d564932 (diff) | |
download | txr-175ec585200315fb32696fd4535769dea9c0d9d3.tar.gz txr-175ec585200315fb32696fd4535769dea9c0d9d3.tar.bz2 txr-175ec585200315fb32696fd4535769dea9c0d9d3.zip |
Wording change in error_trace.
* eval.c (error_trace): Change "possibly triggered by"
to "during evaluation of".
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |