diff options
author | Andy Wingo <wingo@pobox.com> | 2011-01-26 20:13:16 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-01-26 20:13:31 +0100 |
commit | 9fd01bce225a55411c4926430778e6bb213e206d (patch) | |
tree | b4f96ae158066839fea74685b72ac5f6cc0963da /doc/ref/misc-modules.texi | |
parent | c5fc8f8c5645b3ebd1d38320b524ea8ef2480c77 (diff) | |
download | guile-9fd01bce225a55411c4926430778e6bb213e206d.tar.gz |
fix format ~f documentation for width combined with overflowchar
* doc/ref/misc-modules.texi (Formatted Output): Adapt ~f documentation
to indicate that the output will always have a decimal point. Thanks
to Fu-gangqiang for the report.
* THANKS: Update.
Diffstat (limited to 'doc/ref/misc-modules.texi')
-rw-r--r-- | doc/ref/misc-modules.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/misc-modules.texi b/doc/ref/misc-modules.texi index e17f9854b..7071dade5 100644 --- a/doc/ref/misc-modules.texi +++ b/doc/ref/misc-modules.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2006, 2009, 2010 +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2006, 2009, 2010, 2011 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -400,8 +400,8 @@ would exceed @var{width}, then that many @var{overflowchar}s are printed instead of the value. @example -(format #t "~5,,,'xf" 12345) @print{} 12345 -(format #t "~4,,,'xf" 12345) @print{} xxxx +(format #t "~6,,,'xf" 12345) @print{} 12345. +(format #t "~5,,,'xf" 12345) @print{} xxxxx @end example @item @nicode{~e} |