diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-22 17:08:32 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-22 17:08:32 -0800 |
commit | 428519803e55041438569a590f15aa581c4a4737 (patch) | |
tree | fd337f2776aab33ff5b063e725f2394f90e48d4b /ChangeLog | |
parent | f27ee7385eef9199687239541156d700e01fb033 (diff) | |
download | txr-428519803e55041438569a590f15aa581c4a4737.tar.gz txr-428519803e55041438569a590f15aa581c4a4737.tar.bz2 txr-428519803e55041438569a590f15aa581c4a4737.zip |
Bug #35026
* stream.c (format_num): New argument: sign character.
Rewrote to handle precision, width, zero padding and
leading sign similarly to printf.
(vformat): New syntax accepted: a space or + before
the width specifies that a positive sign is to be
explicitly written as a space or + character.
Pass one more argument to vormat_num calls.
Bugfix: go back to vf_init state after processing ~~.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,18 @@ 2011-12-22 Kaz Kylheku <kaz@kylheku.com> + Bug #35026 + + * stream.c (format_num): New argument: sign character. + Rewrote to handle precision, width, zero padding and + leading sign similarly to printf. + (vformat): New syntax accepted: a space or + before + the width specifies that a positive sign is to be + explicitly written as a space or + character. + Pass one more argument to vormat_num calls. + Bugfix: go back to vf_init state after processing ~~. + +2011-12-22 Kaz Kylheku <kaz@kylheku.com> + Bug #35136 and cleanup. * arith.c (plus, minus, mul, gt, ge, lt, le, exptmod, gcd): Remove |