about summary refs log tree commit diff stats
path: root/shell/data.limg
diff options
context:
space:
mode:
Diffstat (limited to 'shell/data.limg')
-rw-r--r--shell/data.limg4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/data.limg b/shell/data.limg
index 2372545a..2b766332 100644
--- a/shell/data.limg
+++ b/shell/data.limg
@@ -8,8 +8,8 @@
   `(define ,name (fn ,params ,@body))])
     (do . [mac (do . body)
   `((fn () ,@body))])
-    (let . [(mac (let var val . body)
-  `((fn (,var) ,@body) ,val))])
+    (let . [mac (let var val . body)
+  `((fn (,var) ,@body) ,val)])
     (when . [mac (when cond . body)
   `(if ,cond (do ,@body) ())])
     (iflet . [mac (iflet var expr then else)