diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2014-10-27 16:12:49 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-10-27 16:12:49 +0800 |
commit | a68498993413cd15f9b852ca32afd368e1792b51 (patch) | |
tree | 8f03b795c89f93418eafbabb0b096f1f05cb5dd0 /ChangeLog | |
parent | [BUILTIN] Use error instead of warnx for fatal errors in printf (diff) | |
download | dash-a68498993413cd15f9b852ca32afd368e1792b51.tar.gz dash-a68498993413cd15f9b852ca32afd368e1792b51.zip |
[BUILTIN] Optimise handling of backslash octals in printf
This patch removes the duplicate octal handling for %b by reusing the existing code in conv_escape. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 707c24d..60fd4b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ * Remove unnecessary restoration of format string in printf. * Remove getintmax in printf. * Use error instead of warnx for fatal errors in printf. + * Optimise handling of backslash octals in printf. 2014-10-13 Eric Blake <eblake@redhat.com> |