diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 07:25:40 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 07:25:40 -0700 |
commit | 159139d01de827e8e7232e2b74b2fc142612d8e2 (patch) | |
tree | b5ffda176bef6945881324c356d11736816fcbd3 | |
parent | f32073001a616fad05b04dd8451292350d572352 (diff) | |
download | txr-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.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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); |