From ab42f9bbff1a0c9dbd6afe74050329390244e91f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 4 Jun 2015 13:44:05 -0700 Subject: 1526 --- repl.mu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'repl.mu') diff --git a/repl.mu b/repl.mu index 6ab233ed..9a41162e 100644 --- a/repl.mu +++ b/repl.mu @@ -84,7 +84,7 @@ recipe read-instruction [ # read characters from the keyboard, print them to the screen in *white*. # Transition to other routines for comments and strings. recipe slurp-regular-characters [ - default-space:address:array:location <- new location:type, 60:literal + default-space:address:array:location <- new location:type, 30:literal result:address:buffer <- next-ingredient k:address:keyboard <- next-ingredient x:address:screen <- next-ingredient @@ -194,7 +194,7 @@ recipe slurp-regular-characters [ # Simpler version of slurp-regular-characters; doesn't handle comments or # strings. Tracks an extra count in case we backspace out of it recipe slurp-comment [ - default-space:address:array:location <- new location:type, 60:literal + default-space:address:array:location <- new location:type, 30:literal result:address:buffer <- next-ingredient k:address:keyboard <- next-ingredient x:address:screen <- next-ingredient @@ -255,7 +255,7 @@ recipe slurp-comment [ # b) handles nested strings using recursive calls to itself. Tracks an extra # count in case we backspace out of it. recipe slurp-string [ - default-space:address:array:location <- new location:type, 60:literal + default-space:address:array:location <- new location:type, 30:literal result:address:buffer <- next-ingredient k:address:keyboard <- next-ingredient x:address:screen <- next-ingredient -- cgit 1.4.1-2-gfad0 inux/bootstrap/003trace.cc.rotate?h=hlt&id=c6cb3605444af2399346b9d33d7b6cb489db7f53'>commit diff stats
path: root/linux/bootstrap/003trace.cc.rotate
blob: f68f65bb9010e1225b1bd81d7a3a1a688de3638e (plain) (tree)
1
2
3
4
5
6
7