summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index c462a238..70dba1cc 100644
--- a/lib.c
+++ b/lib.c
@@ -10089,7 +10089,7 @@ val replace(val seq, val items, val from, val to)
return replace_obj(seq, items, from, to);
/* fallthrough */
case BUF:
- type_mismatch(lit("~a: operation doesn't support buf type"), self, nao);
+ return replace_buf(seq, items, from, to);
default:
type_mismatch(lit("~a: ~s is not a sequence"), self, seq, nao);
}