about summary refs log tree commit diff stats
path: root/baremetal/shell/parse.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-02-28 18:44:20 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-02-28 18:44:20 -0800
commit3ce9511621ec78eea2285551df105c4217019b44 (patch)
tree4f8e011e55478fe8e9301aca6ee2cccd7a179a13 /baremetal/shell/parse.mu
parente759d88d940b79f5a36614709d15f8a73e0224f2 (diff)
downloadmu-3ce9511621ec78eea2285551df105c4217019b44.tar.gz
7826
Diffstat (limited to 'baremetal/shell/parse.mu')
-rw-r--r--baremetal/shell/parse.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/baremetal/shell/parse.mu b/baremetal/shell/parse.mu
index f2074d3d..7e5aafc3 100644
--- a/baremetal/shell/parse.mu
+++ b/baremetal/shell/parse.mu
@@ -13,6 +13,7 @@ fn parse-sexpression tokens: (addr stream cell), _out: (addr handle cell), trace
   }
   read-from-stream tokens, curr-token
   parse-atom curr-token, _out, trace
+  trace-higher trace
   var empty?/eax: boolean <- stream-empty? tokens
   compare empty?, 0/false
   break-if-!=