From 9a2bc9a4666b0a8789eccd231dd97cf1abc74cae Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 18 Feb 2022 21:58:48 -0800 Subject: lisplib: rename lisplib funtions to autoload prefix. * lisplib.c (lisplib_init): Follow rename, and rename try-load-fun to autoload-try-fun. (lisplib_try_load_fun, lisplib_try_load_var, lisplib_try_load_fun_var, lisplib_try_load_slot, lisplib_try_load_struct, lisplib_try_load_keyword): Renamed from `lisplib_try_load_@kind` to `autoload_try_@kind`. * lisplib.h (lisplib_try_load_fun, lisplib_try_load_var, lisplib_try_load_fun_var, lisplib_try_load_slot, lisplib_try_load_struct, lisplib_try_load_keyword): Declarations renamed. * eval.c (lookup_global_var, lookup_sym_lisp1, lookup_fun, lookup_mac, lookup_symac, lookup_symac_lisp1, special_var_p, expand_param_macro, rt_defvar, rt_defv, op_defsymacro, rt_defsymacro, rt_defun, rt_defmacro, makunbound, fmakunbound, mmakunbound): Follow rename. * struct.c (make_struct_type, find_struct_type, lookup_slot_load, lookup_static_slot_load, lookup_static_slot_desc_load, slot_types, static_slot_types): Follow rename. * stdlib/place.tl (get-place-macro): Follow rename of try-load-fun to autoload-try-fun. --- stdlib/place.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib/place.tl') diff --git a/stdlib/place.tl b/stdlib/place.tl index df3d09fb..07ee7be4 100644 --- a/stdlib/place.tl +++ b/stdlib/place.tl @@ -61,7 +61,7 @@ (defun sys:get-place-macro (sym) (or [*place-macro* sym] - (progn (sys:try-load-fun sym) [*place-macro* sym]))) + (progn (sys:autoload-try-fun sym) [*place-macro* sym]))) (defun sys:pl-expand (unex-place env) (while t -- cgit v1.2.3