diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:10:30 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:10:30 -0700 |
commit | 05879d4f9923e737a685776a68f527f752d56263 (patch) | |
tree | fc44aca170a00c86d5e2f24899815200a2d40cac /shell | |
parent | b860f108f77b8468b044cff054f4a1d113daf3b9 (diff) | |
download | mu-05879d4f9923e737a685776a68f527f752d56263.tar.gz |
load large definitions
Diffstat (limited to 'shell')
-rw-r--r-- | shell/tokenize.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/tokenize.mu b/shell/tokenize.mu index 91e12882..66d76718 100644 --- a/shell/tokenize.mu +++ b/shell/tokenize.mu @@ -15,7 +15,7 @@ fn tokenize in: (addr gap-buffer), out: (addr stream cell), trace: (addr trace) break-if-!= # initialize token data each iteration to avoid aliasing var dest-ah/eax: (addr handle stream byte) <- get token, text-data - populate-stream dest-ah, 0x40/max-token-size + populate-stream dest-ah, 0x100/max-definition-size # next-token in, token, trace var error?/eax: boolean <- has-errors? trace |