aboutsummaryrefslogtreecommitdiff
path: root/source/lux.lux
diff options
context:
space:
mode:
Diffstat (limited to 'source/lux.lux')
-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))))
_