summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-04 07:25:40 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-04 07:25:40 -0700
commit159139d01de827e8e7232e2b74b2fc142612d8e2 (patch)
treeb5ffda176bef6945881324c356d11736816fcbd3
parentf32073001a616fad05b04dd8451292350d572352 (diff)
downloadtxr-159139d01de827e8e7232e2b74b2fc142612d8e2.tar.gz
txr-159139d01de827e8e7232e2b74b2fc142612d8e2.tar.bz2
txr-159139d01de827e8e7232e2b74b2fc142612d8e2.zip
format: use self variable in error messages.
* stream.c (formatv): Replace hard-coded "format:" with ~a and self argument. Several error messages are revised.
-rw-r--r--stream.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/stream.c b/stream.c
index b565b57e..f24f7eff 100644
--- a/stream.c
+++ b/stream.c
@@ -3497,9 +3497,9 @@ val formatv(val stream_in, val fmtstr, struct args *al)
n = convert(double, c_num(obj, self));
break;
default:
- uw_throwf(error_s, lit("format: ~~~a conversion requires "
+ uw_throwf(error_s, lit("~a: ~~~a conversion requires "
"numeric arg: ~s given"),
- chr(ch), obj, nao);
+ self, chr(ch), obj, nao);
}
if (!precision_p) {
@@ -3510,8 +3510,8 @@ val formatv(val stream_in, val fmtstr, struct args *al)
/* guard against num_buf overflow */
if (precision > 128)
- uw_throwf(error_s, lit("excessive precision in format: ~s"),
- num(precision), nao);
+ uw_throwf(error_s, lit("~a: excessive precision: ~s"),
+ self, num(precision), nao);
if (ch == 'e') {
sprintf(num_buf, "%.*e", precision, n);
@@ -3612,8 +3612,8 @@ val formatv(val stream_in, val fmtstr, struct args *al)
}
if (precision > 500)
- uw_throwf(error_s, lit("excessive precision in format: ~s"),
- num(precision), nao);
+ uw_throwf(error_s, lit("~a: excessive precision: ~s"),
+ self, num(precision), nao);
sprintf(num_buf, "%.*g", precision, obj->fl.n);