about summary refs log tree commit diff stats
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
parente759d88d940b79f5a36614709d15f8a73e0224f2 (diff)
downloadmu-3ce9511621ec78eea2285551df105c4217019b44.tar.gz
7826
-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-!=
>118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 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