summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-22 18:29:09 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-22 18:29:09 -0800
commite4e0db3b369e74bd9a619b190f710706a40a64d4 (patch)
treee705e8a3fe5ac4b3e2705bf576f63e43cce16f2d /ChangeLog
parentcd7f176ebd9de3e731d4f02223c796b6738dd217 (diff)
downloadtxr-e4e0db3b369e74bd9a619b190f710706a40a64d4.tar.gz
txr-e4e0db3b369e74bd9a619b190f710706a40a64d4.tar.bz2
txr-e4e0db3b369e74bd9a619b190f710706a40a64d4.zip
* stream.c (vformat): If width is specified for ~s or ~a, and
the object is not a string or number, then print it to a string and treat it as a string, adjusting it within the field. Also, do not simply abort on an unknown format directive but throw a proper exception.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fbdb2f6..f8f9d7cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2011-12-22 Kaz Kylheku <kaz@kylheku.com>
+ * stream.c (vformat): If width is specified for ~s or ~a, and
+ the object is not a string or number, then print it to a string
+ and treat it as a string, adjusting it within the field.
+ Also, do not simply abort on an unknown format directive
+ but throw a proper exception.
+
+2011-12-22 Kaz Kylheku <kaz@kylheku.com>
+
* stream.c (vformat): Left-adjusted field is now specified
using < rather than '-'. The +, space and leading 0 are
specified on the precision, not the width.