about summary refs log tree commit diff stats
path: root/repl.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-04 13:44:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-04 13:44:05 -0700
commitab42f9bbff1a0c9dbd6afe74050329390244e91f (patch)
tree9d3a06f29f24ebfe0012a0f1c83d5770b0c27be2 /repl.mu
parent564c65b2ea83018acdbf2f9b004ff12de1f67243 (diff)
downloadmu-ab42f9bbff1a0c9dbd6afe74050329390244e91f.tar.gz
1526
Diffstat (limited to 'repl.mu')
-rw-r--r--repl.mu6
1 files changed, 3 insertions, 3 deletions
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