diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-04-10 06:17:43 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-04-10 06:17:43 -0700 |
commit | e17a47ac47f9c4c4aa6eccad76942d644c912faa (patch) | |
tree | 66ba00cda60d5245d04a0cb76af1f07f415e7fd7 /eval.c | |
parent | 78fd352ba2d5aaaa5ea3c23bd8f208f17c8edde7 (diff) | |
download | txr-e17a47ac47f9c4c4aa6eccad76942d644c912faa.tar.gz txr-e17a47ac47f9c4c4aa6eccad76942d644c912faa.tar.bz2 txr-e17a47ac47f9c4c4aa6eccad76942d644c912faa.zip |
* eval.c (eval_init): There is an until_s global variable, so
no need to intern the symbol when registering me_until.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3935,7 +3935,7 @@ void eval_init(void) reg_mac(when_s, me_when); reg_mac(intern(lit("unless"), user_package), me_unless); reg_mac(while_s, me_while); - reg_mac(intern(lit("until"), user_package), me_until); + reg_mac(until_s, me_until); reg_mac(quasilist_s, me_quasilist); reg_mac(flet_s, me_flet_labels); reg_mac(labels_s, me_flet_labels); |