about summary refs log tree commit diff stats
path: root/baremetal/shell
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
parente759d88d940b79f5a36614709d15f8a73e0224f2 (diff)
downloadmu-3ce9511621ec78eea2285551df105c4217019b44.tar.gz
7826
Diffstat (limited to 'baremetal/shell')
-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-!=
ref='#n139'>139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170