Re: Guile release planning

2008-12-08 Thread Neil Jerram
2008/11/18 Ludovic Courtès <[EMAIL PROTECTED]>: > Hi, > > Andy Wingo <[EMAIL PROTECTED]> writes: > >> Beating a dead horse, 1.8.5 should be compatible with 1.8.3, via >> whatever mechanism. (The actual problem in this case was elsewhere.) > > 1.8.5 *is* compatible with 1.8.x. > >> I am skeptical of

GNU Guile 1.8.6 released

2008-12-08 Thread Ludovic Courtès
We are pleased to announce GNU Guile release 1.8.6. This is the next maintenance release for the 1.8 stable series. It provides a number of portability improvements, bug fixes, as well as several new features. The Guile web page is located at http://gnu.org/software/guile/, and among other thing

Re: Printing utf8 strings

2008-12-08 Thread Neil Jerram
2008/12/8 Stanislav Ievlev <[EMAIL PROTECTED]>: > Greetings! > > Why results of (display) and (write) functions on same utf-8 string are too > different? Because Guile knows nothing at all about UTF-8, I'm afraid. To the extent that anything works at all with UTF-8 strings, that's just luck. (Fo

Re: Printing utf8 strings

2008-12-08 Thread Stanislav Ievlev
This is a guile 1.8.5 2008/12/8 Stanislav Ievlev <[EMAIL PROTECTED]> > > > 2008/12/8 Stanislav Ievlev <[EMAIL PROTECTED]> > >> Greetings! >> >> Why results of (display) and (write) functions on same utf-8 string are >> too different? > > It's very strange that one symbols ('о' - russian 'o') I s

Re: Printing utf8 strings

2008-12-08 Thread Stanislav Ievlev
2008/12/8 Stanislav Ievlev <[EMAIL PROTECTED]> > Greetings! > > Why results of (display) and (write) functions on same utf-8 string are too > different? It's very strange that one symbols ('о' - russian 'o') I see without changes, but others ('с' - russian 's') in quoted form. > > > -- > $ gui

Printing utf8 strings

2008-12-08 Thread Stanislav Ievlev
Greetings! Why results of (display) and (write) functions on same utf-8 string are too different? -- $ guile guile> (define a "строка") guile> (display a) строкаguile> (write a) "�x81�x82�x80ока"guile> -- -- With best regards Stanislav Ievlev.