Re: Problem with slib

2012-12-16 Thread Mark H Weaver
Germán "A. Arias" writes: > I install slib as described in manual, but I have a problem. Unfortunately, the slib interface for Guile has been broken for quite some time. There has been some recent discussion [1] of fixing it, including some preliminary patches, but that work seems to have stalle

Re: GNU Guile community in google+

2012-12-16 Thread Nala Ginrut
On Mon, 2012-12-17 at 01:36 -0500, Mark H Weaver wrote: > zx spectrumgomas writes: > > I've created GNU Guile in google+ . Join to the community! > > https://plus.google.com/communities/109342732294319716184?hl=es > > No, please do not join this so-called "community". Google+, like > Facebook, i

Re: GNU Guile community in google+

2012-12-16 Thread Mark H Weaver
zx spectrumgomas writes: > I've created GNU Guile in google+ . Join to the community! > https://plus.google.com/communities/109342732294319716184?hl=es No, please do not join this so-called "community". Google+, like Facebook, is a very disturbing attempt by a single corporation to centralize co

Re: GNU Guile community in google+

2012-12-16 Thread Nala Ginrut
On Sun, 2012-12-16 at 21:03 -0500, Greg Troxel wrote: > zx spectrumgomas writes: > > > I've created GNU Guile in google+ . Join to the community! > > https://plus.google.com/communities/109342732294319716184?hl=es > > I always find it odd and #disturbing that Free Software communities use > site

Re: GNU Guile community in google+

2012-12-16 Thread Greg Troxel
zx spectrumgomas writes: > I've created GNU Guile in google+ . Join to the community! > https://plus.google.com/communities/109342732294319716184?hl=es I always find it odd and #disturbing that Free Software communities use sites like this, built with non-free software and with at best unclear

GNU Guile community in google+

2012-12-16 Thread zx spectrumgomas
I've created GNU Guile in google+ . Join to the community! https://plus.google.com/communities/109342732294319716184?hl=es

Problem with slib

2012-12-16 Thread A. Arias
I install slib as described in manual, but I have a problem. First I type: (use-modules (ice-9 slib)) And get: scheme@(guile-user)> (use-modules (ice-9 slib)) ;;; note: source file /usr/local/share/guile/2.0/slib/guile.init ;;; newer than compiled /home/german/.cache/guile/ccache/2.0-LE-4

Re: displaying UTF8 characters in and out of a script (guile 2.0.5)

2012-12-16 Thread Mark H Weaver
David Pirotte writes: >> However, the same command in a script: >> >> #!/usr/bin/guile \ >> -s >> #! >> (display "Ćićolina") >> >> writes this out: ?i?olina > > you need to set the port encoding first [for further info see section '6.14.1 > Ports' > of the manual]: Unfortunately that is only

Re: displaying UTF8 characters in and out of a script (guile 2.0.5)

2012-12-16 Thread David Pirotte
Hello, > However, the same command in a script: > > #!/usr/bin/guile \ > -s > #! > (display "Ćićolina") > > writes this out: ?i?olina you need to set the port encoding first [for further info see section '6.14.1 Ports' of the manual]: #!/bin/sh # -*- mode: scheme; coding: utf

displaying UTF8 characters in and out of a script (guile 2.0.5)

2012-12-16 Thread msematman
Dear all, (display "Ćićolina") from the interactive session with the guile interpreter correctly writes Ćićolina to the standard output. However, the same command in a script: #!/usr/bin/guile \ -s #! (display "Ćićolina") writes this out: ?i?olina Obviously, there is something wrong with the o