bug#13485: wrong warning for format ~!

2013-01-18 Thread Daniel Llorens
In 2.0.7 scheme@(guile-user)> (import (ice-9 format)) scheme@(guile-user)> (format #t "~!") ;;; :2:0: warning: "~!": wrong number of `format' arguments: expected 1, got 0 $1 = #t scheme@(guile-user)> (format #t "~!" 3) $2 = #t scheme@(guile-user)> (format #t "~!~a" 3 9) 3$3 = #t scheme@(guile-

bug#13491:

2013-01-18 Thread David Serafini
Minor bug: in http://www.gnu.org/software/guile/ideas.html, the link "Paul Wilson's survey papers on garbage collection" is dead, and the UT's CS dept. search doesn't have anything for Paul Wilson although google does find a paper at http:

bug#13485: wrong warning for format ~!

2013-01-18 Thread Ian Price
Daniel Llorens writes: > In 2.0.7 > > scheme@(guile-user)> (import (ice-9 format)) > scheme@(guile-user)> (format #t "~!") > ;;; :2:0: warning: "~!": wrong number of `format' arguments: expected > 1, got 0 > $1 = #t > scheme@(guile-user)> (format #t "~!" 3) > $2 = #t > scheme@(guile-user)> (form