diff options
author | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
commit | b96beb587c11fcfbce86ce2d62351600cf6cad1b (patch) | |
tree | c9a558ab1391ac97cb11e8777ea78299f1ab5555 /lux-r/source | |
parent | 104130efba46a875eba566384578f8aa8593ad37 (diff) |
More traditional names for unquoting macros.
Diffstat (limited to 'lux-r/source')
-rw-r--r-- | lux-r/source/program.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-r/source/program.lux b/lux-r/source/program.lux index 7b379d027..376b2a598 100644 --- a/lux-r/source/program.lux +++ b/lux-r/source/program.lux @@ -194,10 +194,10 @@ (let [... to_sub (is (-> Any org/armedbear/lisp/LispObject) ... (function (_ sub_value) ... (let [sub_value (as java/lang/Object sub_value)] - ... (`` (<| (~~ (with_template [<type> <then>] + ... (`` (<| (,, (with_template [<type> <then>] ... [(case (ffi.as <type> sub_value) ... {.#Some sub_value} - ... (`` (|> sub_value (~~ (template.splice <then>)))) + ... (`` (|> sub_value (,, (template.splice <then>)))) ... {.#None})] ... [[java/lang/Object] [host_value]] @@ -262,7 +262,7 @@ ... ("lux io log" (..%%code <call>)) _jvm_this)) - (~~ (with_template [<call> <output>] + (,, (with_template [<call> <output>] [(org/renjin/sexp/ListVector ... org/renjin/sexp/AbstractSEXP ... org/renjin/sexp/SEXP @@ -433,10 +433,10 @@ (..read_tuple read host_object)) {.#None}) - (~~ (with_template [<class> <post_processing>] + (,, (with_template [<class> <post_processing>] [(case (ffi.as <class> host_object) {.#Some host_object} - (`` (|> host_object (~~ (template.splice <post_processing>)))) + (`` (|> host_object (,, (template.splice <post_processing>)))) {.#None})] |