diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-10 07:43:39 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-10 07:43:39 -0700 |
commit | 6b66641f1b03b959f15c1c63f6dc055264809410 (patch) | |
tree | 3c6bf51c69b3a43075a7cb1e63d148fd3c1c4d91 /stream.c | |
parent | 5761d2e6c82f5234d4e63a49bc0a59ab69bbf0ed (diff) | |
download | txr-6b66641f1b03b959f15c1c63f6dc055264809410.tar.gz txr-6b66641f1b03b959f15c1c63f6dc055264809410.tar.bz2 txr-6b66641f1b03b959f15c1c63f6dc055264809410.zip |
format: fix precision field leading zero problems.
* stream.c (formatv): Do not recognize multiple leading zeros
as a single one; once the zero flag is set, if another zero is
seen, it must be treated as one of the digits specifying the
precision value. New requirement: before processing a format
specifier, check for the situation that the leading zero
has been specified, but no precision. Convert this situation
to that of a precision of zero being given, with no leading
zero.
* txr.1: Document the ambiguity around the leading zero and
how it is being handled when only the leading zero flag is
given, and no actual precision. Add a note about what happens
when zero precision is specified in ~a in conjunction with
a floating-point value. Misspelled "pas" word fixed.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -3337,8 +3337,11 @@ val formatv(val stream_in, val fmtstr, struct args *al) case vf_precision: switch (ch) { case '0': - zeropad = 1; - continue; + if (!zeropad) { + zeropad = 1; + continue; + } + /* fallthrough */ case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': saved_state = state; @@ -3404,6 +3407,10 @@ val formatv(val stream_in, val fmtstr, struct args *al) break; case vf_spec: state = vf_init; + if (zeropad && !precision_p) { + zeropad = precision = 0; + precision_p = 1; + } switch (ch) { case 'x': case 'X': obj = args_get_checked(self, al, &arg_ix); |