1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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.
This commit is contained in:
Andy Wingo 2011-01-26 20:13:16 +01:00
parent c5fc8f8c56
commit 9fd01bce22
2 changed files with 4 additions and 3 deletions

1
THANKS
View file

@ -44,6 +44,7 @@ For fixes or providing information which led to a fix:
David Fang David Fang
Barry Fishman Barry Fishman
Charles Gagnon Charles Gagnon
Fu-gangqiang
Peter Gavin Peter Gavin
Nils Gey Nils Gey
Eric Gillespie, Jr Eric Gillespie, Jr

View file

@ -1,6 +1,6 @@
@c -*-texinfo-*- @c -*-texinfo-*-
@c This is part of the GNU Guile Reference Manual. @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 Free Software Foundation, Inc.
@c See the file guile.texi for copying conditions. @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. printed instead of the value.
@example @example
(format #t "~5,,,'xf" 12345) @print{} 12345 (format #t "~6,,,'xf" 12345) @print{} 12345.
(format #t "~4,,,'xf" 12345) @print{} xxxx (format #t "~5,,,'xf" 12345) @print{} xxxxx
@end example @end example
@item @nicode{~e} @item @nicode{~e}