diff options
author | Eduardo Julian | 2016-10-29 22:59:02 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-10-29 22:59:02 -0400 |
commit | 2dfc64d30a6220866a80e1a9c77910df0b177a06 (patch) | |
tree | 7098d267527743718da74d937a9f460472e80518 /src | |
parent | 2900cc94bcc7ff44cf7caa9871bc0aaab4090c38 (diff) |
- The |let optimization didn't actually work, so it was removed.
Diffstat (limited to 'src')
-rw-r--r-- | src/lux/base.clj | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lux/base.clj b/src/lux/base.clj index a4e2c3096..da5ef48f8 100644 --- a/src/lux/base.clj +++ b/src/lux/base.clj @@ -298,9 +298,6 @@ (defmacro |let [bindings body] (reduce (fn [inner [left right]] - (if (symbol? left) - `(let [~left ~right] - ~inner)) `(|case ~right ~left ~inner)) |