about summary refs log tree commit diff stats
path: root/061channel.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-14 12:29:21 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-14 12:29:26 -0700
commit1b1dcddf54aba23c1b462c936004150c17ac3a1a (patch)
tree7559b39a78a46ced0752d783a7e3ec15e7407934 /061channel.mu
parentaf336c444f4fe9d8a1677a200f40748ce5f24a26 (diff)
downloadmu-1b1dcddf54aba23c1b462c936004150c17ac3a1a.tar.gz
1369
Delete comment-out marker from inside mu strings. Have to do this
manually for now.
Diffstat (limited to '061channel.mu')
-rw-r--r--061channel.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/061channel.mu b/061channel.mu
index 5445447d..f337379c 100644
--- a/061channel.mu
+++ b/061channel.mu
@@ -304,10 +304,10 @@ recipe buffer-lines [
         {
           buffer-empty?:boolean <- equal buffer-length:address:number/deref, 0:literal
           break-if buffer-empty?:boolean
-#?           $print [before: ], buffer-length:address:number/deref, [ #? 1
+#?           $print [before: ], buffer-length:address:number/deref, [ 
 #? ] #? 1
           buffer-length:address:number/deref <- subtract buffer-length:address:number/deref, 1:literal
-#?           $print [after: ], buffer-length:address:number/deref, [ #? 1
+#?           $print [after: ], buffer-length:address:number/deref, [ 
 #? ] #? 1
         }
 #?         $exit #? 2
@@ -334,7 +334,7 @@ recipe buffer-lines [
       break-if done?:boolean
       c:character <- index line-contents:address:array:character/deref, i:number
       out:address:channel <- write out:address:channel, c:character
-#?       $print [writing ], i:number, [: ], c:character, [ #? 1
+#?       $print [writing ], i:number, [: ], c:character, [ 
 #? ] #? 1
       i:number <- add i:number, 1:literal
       loop