about summary refs log tree commit diff stats
path: root/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-29 16:22:08 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-29 16:22:08 -0700
commit9b131ce02bc58f930bde98220411b639747a7392 (patch)
tree75f25638109079b53ff6bb3608032833529ba9bb /shell
parent7b84872380e409fe6bb636b6a6df31a25c8c109d (diff)
downloadmu-9b131ce02bc58f930bde98220411b639747a7392.tar.gz
.
Diffstat (limited to 'shell')
-rw-r--r--shell/tokenize.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/tokenize.mu b/shell/tokenize.mu
index 7c006f93..69ae91d3 100644
--- a/shell/tokenize.mu
+++ b/shell/tokenize.mu
@@ -258,6 +258,7 @@ fn next-token in: (addr gap-buffer), _out-cell: (addr cell), trace: (addr trace)
       var dummy/eax: grapheme <- read-from-gap-buffer in  # skip open bracket
       next-stream-token in, out, trace
       var out-cell/eax: (addr cell) <- copy _out-cell
+      # streams set the type
       var out-cell-type/eax: (addr int) <- get out-cell, type
       copy-to *out-cell-type, 3/stream
       break $next-token:case