File tree Expand file tree Collapse file tree 1 file changed +4
-20
lines changed Expand file tree Collapse file tree 1 file changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -331,28 +331,12 @@ impl Environment {
331
331
environment. insert ( Symbol :: intern ( "eval" ) , eval_fn. to_rc_value ( ) ) ;
332
332
333
333
// Interop to read real clojure.core
334
- environment. insert_into_namespace (
335
- & Symbol :: intern ( "clojure.interop" ) ,
336
- Symbol :: intern ( "lt" ) ,
337
- lt_fn. to_rc_value ( ) ,
338
- ) ;
334
+ environment. insert ( Symbol :: intern ( "lt" ) , lt_fn. to_rc_value ( ) ) ;
339
335
340
- environment. insert_into_namespace (
341
- & Symbol :: intern ( "clojure.interop" ) ,
342
- Symbol :: intern ( "gt" ) ,
343
- gt_fn. to_rc_value ( ) ,
344
- ) ;
345
- environment. insert_into_namespace (
346
- & Symbol :: intern ( "clojure.interop" ) ,
347
- Symbol :: intern ( "lte" ) ,
348
- lte_fn. to_rc_value ( ) ,
349
- ) ;
336
+ environment. insert ( Symbol :: intern ( "gt" ) , gt_fn. to_rc_value ( ) ) ;
337
+ environment. insert ( Symbol :: intern ( "lte" ) , lte_fn. to_rc_value ( ) ) ;
350
338
351
- environment. insert_into_namespace (
352
- & Symbol :: intern ( "clojure.interop" ) ,
353
- Symbol :: intern ( "gte" ) ,
354
- gte_fn. to_rc_value ( ) ,
355
- ) ;
339
+ environment. insert ( Symbol :: intern ( "gte" ) , gte_fn. to_rc_value ( ) ) ;
356
340
357
341
// Thread namespace
358
342
environment. insert_into_namespace (
You can’t perform that action at this time.
0 commit comments