about summary refs log tree commit diff stats
path: root/061text.mu
diff options
context:
space:
mode:
Diffstat (limited to '061text.mu')
-rw-r--r--061text.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/061text.mu b/061text.mu
index d8e40112..fac5609c 100644
--- a/061text.mu
+++ b/061text.mu
@@ -448,7 +448,7 @@ def replace s:text, oldc:char, newc:char, from:num/optional -> s:text [
   len:num <- length *s
   i:num <- find-next s, oldc, from
   done?:bool <- greater-or-equal i, len
-  return-if done?, s/same-as-ingredient:0
+  return-if done?
   *s <- put-index *s, i, newc
   i <- add i, 1
   s <- replace s, oldc, newc, i