about summary refs log tree commit diff stats
path: root/shell/data.limg
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-06-23 16:24:56 -0700
committerKartik Agaram <vc@akkartik.com>2021-06-23 16:24:56 -0700
commite4b6665aee6fb2e273d27fc08d0af18091bcf86a (patch)
treea312440b002438634d1875fb14d23c2d79d3ca37 /shell/data.limg
parente0b8eddb5b2463a6a2890fd2a089cc3cc1a0f711 (diff)
downloadmu-e4b6665aee6fb2e273d27fc08d0af18091bcf86a.tar.gz
.
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)