summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arith.c b/arith.c
index c4642782..1d00e8aa 100644
--- a/arith.c
+++ b/arith.c
@@ -3980,7 +3980,7 @@ val poly(val x, val seq)
return acc;
}
default:
- uw_throwf(error_s, lit("~a: bad argument ~s; poly wants a sequence!"),
+ uw_throwf(error_s, lit("~a: bad argument ~s; poly wants a list or vector!"),
self, seq, nao);
}
@@ -4025,7 +4025,7 @@ val rpoly(val x, val seq)
return acc;
}
default:
- uw_throwf(error_s, lit("~a: bad argument ~s; poly wants a sequence!"),
+ uw_throwf(error_s, lit("~a: bad argument ~s; poly wants a list or vector!"),
self, seq, nao);
}