From 2c58598b44ecef88151cb81a613b24a5c671e635 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 23 Jun 2021 06:48:46 -0700 Subject: lib: use existing self variable. * lib.c (populate_obj_hash): Refer to self, rather than hard coding function name prefix. --- lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.c b/lib.c index 0e8f628d..0ce2e43b 100644 --- a/lib.c +++ b/lib.c @@ -13484,8 +13484,8 @@ tail: val label = cdr(prev_cell); if (label == colon_k) - uw_throwf(error_s, lit("print: unexpected duplicate object " - "(misbehaving print method?)"), nao); + uw_throwf(error_s, lit("~a: unexpected duplicate object " + "(misbehaving print method?)"), self, nao); if (prev_cell) return; } else { -- cgit v1.2.3