emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#21221: closed (guile-2.2 socket ports used with di


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#21221: closed (guile-2.2 socket ports used with display does not send utf8 !)
Date: Mon, 20 Jun 2016 15:56:01 +0000

Your message dated Mon, 20 Jun 2016 17:55:37 +0200
with message-id <address@hidden>
and subject line Re: bug#21221: guile-2.2 socket ports used with display does 
not send utf8 !
has caused the debbugs.gnu.org bug report #21221,
regarding guile-2.2 socket ports used with display does not send utf8 !
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
21221: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21221
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: guile-2.2 socket ports used with display does not send utf8 ! Date: Sat, 8 Aug 2015 21:20:54 -0500
The following simple client-server program fails for me.
For simplicity, for the server, just use netcat listening on port 7777:

$ nc -l 7777

In a guile shell, try this:
(setlocale LC_ALL "")
(define sss (socket PF_INET SOCK_STREAM 0))
(set-port-encoding! sss "utf-8")
(connect sss AF_INET (inet-pton AF_INET "127.0.0.1") 7777)
(set-port-encoding! sss "utf-8")
(display "SmålandSmåland\n" sss)
(close-port sss)


The SmålandSmåland gets corrupted:  nc receives Sm?landSm?land

Some types of utf8 do go through, so e.g. (display "Ćićolina\n" sss)
seems to work fine.  This finish/norweign thing, though, fails,
vietnamese too.
(display "Hòa Phú Phú Tân Hiệp An  Tương Bình Hiệp Định Hòa\n" sss)

I suppose the answer is "don't use display for sending strings on a
socket", but I'm stumped as to why there should even be an encoding
error, why its not utf8 end-to-end.

This is for guile-2.2 from a recent git pull of the master source from
about June 2015, but I believe the problem occurs on guile-2.0 as
well.

guile --version
guile (GNU Guile) 2.1.0.305-e7097-dirty

this is on ubuntu 14.04 aka ubuntu trusty

-- Linas Vepstas



--- End Message ---
--- Begin Message --- Subject: Re: bug#21221: guile-2.2 socket ports used with display does not send utf8 ! Date: Mon, 20 Jun 2016 17:55:37 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)
On Sun 09 Aug 2015 04:20, Linas Vepstas <address@hidden> writes:

> The following simple client-server program fails for me.
> For simplicity, for the server, just use netcat listening on port 7777:
>
> $ nc -l 7777
>
> In a guile shell, try this:
> (setlocale LC_ALL "")
> (define sss (socket PF_INET SOCK_STREAM 0))
> (set-port-encoding! sss "utf-8")
> (connect sss AF_INET (inet-pton AF_INET "127.0.0.1") 7777)
> (set-port-encoding! sss "utf-8")
> (display "SmålandSmåland\n" sss)
> (close-port sss)
>
>
> The SmålandSmåland gets corrupted:  nc receives Sm?landSm?land

I have tried this in 2.1.3 and it seems to work for me.  Thanks for the
report, please reopen if you can still reproduce the bug.

Cheers,

Andy


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]