guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.2-15-g072624


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.2-15-g0726241
Date: Thu, 21 Jul 2011 07:43:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=072624134b9d8b2aa37f619dc5f828d667c72737

The branch, stable-2.0 has been updated
       via  072624134b9d8b2aa37f619dc5f828d667c72737 (commit)
      from  ecfb148137e62fc4ca9d1b7319c5aa688cec997f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 072624134b9d8b2aa37f619dc5f828d667c72737
Author: Andy Wingo <address@hidden>
Date:   Thu Jul 21 09:42:20 2011 +0200

    open-socket-for-url returns port in latin1 encoding
    
    * module/web/client.scm (open-socket-for-uri): Set port encoding to
      latin1, to see if this fixes Nalin Garut's problems.

-----------------------------------------------------------------------

Summary of changes:
 module/web/client.scm |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/module/web/client.scm b/module/web/client.scm
index 321c7db..6a04497 100644
--- a/module/web/client.scm
+++ b/module/web/client.scm
@@ -48,6 +48,7 @@
                                 (else (symbol->string (uri-scheme uri)))))))
          (s  (socket (addrinfo:fam ai) (addrinfo:socktype ai)
                      (addrinfo:protocol ai))))
+    (set-port-encoding! s "ISO-8859-1")
     (connect s (addrinfo:addr ai))
     ;; Buffer input and output on this port.
     (setvbuf s _IOFBF)


hooks/post-receive
-- 
GNU Guile



reply via email to

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