From 488bc2f599aa6a2be792e36033ce087a9c5c7577 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 14 Mar 2021 12:02:02 -0700 Subject: lib: fix neglect to use self variable. * arith.c (toint): Use self instead of repeating function name in diagnostic. * ftw.c (ftw_wrap): Likewise. * glib.c (glow_wrap): Likewise. * rand.c (make_random_state, random): Likewise. * lib.c (nreverse, reverse, remove_if, int_str, less, chr_str, chr_str_set, unintern, rehome_sym, in): Likewise. (vector, obj_print_impl): Pass self to helper function instead of repeating identical literal. --- glob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'glob.c') diff --git a/glob.c b/glob.c index 0459c207..af72f04e 100644 --- a/glob.c +++ b/glob.c @@ -73,8 +73,8 @@ val glob_wrap(val pattern, val flags, val errfun) if (s_errfunc) { free(pat_u8); - uw_throwf(error_s, lit("glob: glob cannot be re-entered from " - "its error callback function"), nao); + uw_throwf(error_s, lit("~a: glob cannot be re-entered from " + "its error callback function"), self, nao); } s_errfunc = default_null_arg(errfun); -- cgit v1.2.3