diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-23 06:48:46 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-23 06:48:46 -0700 |
commit | 2c58598b44ecef88151cb81a613b24a5c671e635 (patch) | |
tree | c200d058a86e7586f05a99a14a60c0c92e15e63c | |
parent | 14dff64bf39f78d1e673f62244c6ffa8643572cd (diff) | |
download | txr-2c58598b44ecef88151cb81a613b24a5c671e635.tar.gz txr-2c58598b44ecef88151cb81a613b24a5c671e635.tar.bz2 txr-2c58598b44ecef88151cb81a613b24a5c671e635.zip |
lib: use existing self variable.
* lib.c (populate_obj_hash): Refer to self, rather than hard
coding function name prefix.
-rw-r--r-- | lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |