aboutsummaryrefslogtreecommitdiff
path: root/source/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2015-09-15 02:18:07 -0400
committerEduardo Julian2015-09-15 02:18:07 -0400
commit0f358c4052cf766a74b0354124736cb3652cda1d (patch)
tree295bcf56d940728e1a5a28d6b839bfc4c6cb5623 /source/lux.lux
parent79f2b2d51b8210d0a2bc81344ea82b4e5cbc7429 (diff)
- :: no longer demands prefixes for the struct members
- Fixed both lux/control/comonad;be & lux/codata/stream;\stream
Diffstat (limited to '')
-rw-r--r--source/lux.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lux.lux b/source/lux.lux
index e155af794..7d00cd077 100644
--- a/source/lux.lux
+++ b/source/lux.lux
@@ -3049,10 +3049,10 @@
(lambda [so-far part]
(case part
[_ (#SymbolS slot)]
- (return (` (get@ (~ (tag$ slot)) (~ so-far))))
+ (return (` (using (~ so-far) (~ (symbol$ slot)))))
(\ [_ (#FormS (@list& [_ (#SymbolS slot)] args))])
- (return (` ((get@ (~ (tag$ slot)) (~ so-far))
+ (return (` ((using (~ so-far) (~ (symbol$ slot)))
(~@ args))))
_