diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-18 20:50:56 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-18 20:50:56 -0700 |
commit | 16dddd1ab36eade6df291fd6a75be9b926b27036 (patch) | |
tree | 8ef5a665f71cd507583357c4aff9b8f453460d42 /eval.c | |
parent | a2d98ba063616fc56c6888641c77b55b562fc9ab (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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), |