about summary refs log tree commit diff stats
path: root/lambda-to-mu.mu
diff options
context:
space:
mode:
Diffstat (limited to 'lambda-to-mu.mu')
-rw-r--r--lambda-to-mu.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/lambda-to-mu.mu b/lambda-to-mu.mu
index d7220b1d..6c358d9f 100644
--- a/lambda-to-mu.mu
+++ b/lambda-to-mu.mu
@@ -186,7 +186,7 @@ def parse in:&:stream:char -> out:&:cell, in:&:stream:char [
   {
     break-if pair?
     # atom
-    b:&:buffer <- new-buffer 30
+    buf:&:buffer <- new-buffer 30
     {
       done?:bool <- end-of-stream? in
       break-if done?
@@ -197,10 +197,10 @@ def parse in:&:stream:char -> out:&:cell, in:&:stream:char [
       done? <- space? c
       break-if done?
       c <- read in
-      b <- append b, c
+      buf <- append buf, c
       loop
     }
-    s:text <- buffer-to-array b
+    s:text <- buffer-to-array buf
     out <- new-atom s
   }
   {