bug#18519: incorrect path in guild when configure w/ --program-suffix used

2014-09-21 Thread Matt Wette
I built guile 2.0.11 with "configure --program-suffix=20". guile was installed as .../bin/guile20 guild was installed as .../bin/guild20 The guild20 script references .../bin/guile when I was expecting .../bin/guile20 to be used: #!/bin/sh # -*- scheme -*- prefix="/opt/local" exec_prefix="${pref

bug#18439: [PATCH] guile-readline: Use the current directory if HOME is unset

2014-09-21 Thread Mark H Weaver
severity 18439 wishlist tags 18439 notabug thanks David Michael writes: > * guile-readline/ice-9/readline.scm (history-file): When the HOME > environment variable is unset, use the current directory instead. > --- > guile-readline/ice-9/readline.scm | 3 ++- > 1 file changed, 2 insertions(+),

bug#18520: string ports should not have an encoding

2014-09-21 Thread David Kastrup
In Guile 2.0, at the time a string port is opened, the value of the fluid %default-port-encoding is used for deciding how to encode the string into a byte stream, and set-port-encoding! may then be used for deciding how to decode that byte stream back into characters. This does not make sense as