diff options
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6456,9 +6456,9 @@ void eval_init(void) reg_var(load_path_s, nil); reg_symacro(intern(lit("self-load-path"), user_package), load_path_s); reg_var(load_recursive_s, nil); - reg_fun(intern(lit("expand"), system_package), func_n2o(no_warn_expand, 1)); - reg_fun(intern(lit("expand*"), system_package), func_n2o(expand, 1)); - reg_fun(intern(lit("expand-with-free-refs"), system_package), + reg_fun(intern(lit("expand"), user_package), func_n2o(no_warn_expand, 1)); + reg_fun(intern(lit("expand*"), user_package), func_n2o(expand, 1)); + reg_fun(intern(lit("expand-with-free-refs"), user_package), func_n3o(expand_with_free_refs, 1)); reg_fun(intern(lit("macro-form-p"), user_package), func_n2o(macro_form_p, 1)); reg_fun(intern(lit("macroexpand-1"), user_package), |