summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-14 06:51:02 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-14 06:51:02 -0700
commit86d04654a747f537c43e464adb227118d11bfd10 (patch)
treef9439d29eb7d53434974b8c4fc6548f99346f723 /stream.c
parentd64767f3dd63b6ae43d52f614efe53d2ddb47f2e (diff)
downloadtxr-86d04654a747f537c43e464adb227118d11bfd10.tar.gz
txr-86d04654a747f537c43e464adb227118d11bfd10.tar.bz2
txr-86d04654a747f537c43e464adb227118d11bfd10.zip
format: new precision - character for zero.
* stream.c (formatv): The - precision option character produces a "sign" that is a zero. If this is used with leading zeros, it will avoid generating a space. The requirements can use improvement here, but one step at a time. * tests/018/format.tl: Some tests. * txr.1: Documented.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index 248a51b2..77af0b37 100644
--- a/stream.c
+++ b/stream.c
@@ -3351,6 +3351,9 @@ val formatv(val stream_in, val fmtstr, struct args *al)
case '+': case ' ':
sign = ch;
continue;
+ case '-':
+ sign = '0';
+ continue;
case '*':
saved_state = state;
state = vf_star;