summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-18 20:50:56 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-18 20:50:56 -0700
commit16dddd1ab36eade6df291fd6a75be9b926b27036 (patch)
tree8ef5a665f71cd507583357c4aff9b8f453460d42 /eval.c
parenta2d98ba063616fc56c6888641c77b55b562fc9ab (diff)
downloadtxr-16dddd1ab36eade6df291fd6a75be9b926b27036.tar.gz
txr-16dddd1ab36eade6df291fd6a75be9b926b27036.tar.bz2
txr-16dddd1ab36eade6df291fd6a75be9b926b27036.zip
Use sys_load_s symbol variable.
* eval.c (eval_init): Use sys_load_s variable set up earlier in the function instead of redundant call to intern.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 7316ed30..92b54b52 100644
--- a/eval.c
+++ b/eval.c
@@ -5066,7 +5066,7 @@ void eval_init(void)
reg_fun(intern(lit("lisp-parse"), user_package), func_n5o(lisp_parse, 0));
reg_fun(intern(lit("read"), user_package), func_n5o(lisp_parse, 0));
reg_fun(intern(lit("iread"), user_package), func_n5o(iread, 0));
- reg_fun(intern(lit("load"), system_package), func_n2(sys_load));
+ reg_fun(sys_load_s, func_n2(sys_load));
reg_fun(intern(lit("expand"), system_package), func_n2o(expand, 1));
reg_fun(intern(lit("macro-form-p"), user_package), func_n2o(macro_form_p, 1));
reg_fun(intern(lit("macroexpand-1"), user_package),