From 30459d68fe6ddbbdd69e092d576b9922bcc48411 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 4 Nov 2016 21:20:21 -0700 Subject: Don't print distracting path in error trace. * eval.c (error_trace): No need to indicate where an expansion was calculated; it is distracting information when the exception isn't happening at expansion time. --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eval.c b/eval.c index 0016630e..33f1af51 100644 --- a/eval.c +++ b/eval.c @@ -280,8 +280,8 @@ void error_trace(val exsym, val exvals, val out_stream, val prefix) } if (origin) { - format(out_stream, lit("~a ... an expansion at ~a of ~!~s\n"), - prefix, info, origin, nao); + format(out_stream, lit("~a ... an expansion of ~!~s\n"), + prefix, origin, nao); } else if (!first) { if (info) format(out_stream, lit("~a which is located at ~a\n"), prefix, -- cgit v1.2.3