guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 15/23: (web server ethreads): more use of latin1 accesso


From: Andy Wingo
Subject: [Guile-commits] 15/23: (web server ethreads): more use of latin1 accessors
Date: Thu, 24 Mar 2016 14:26:04 +0000

wingo pushed a commit to branch wip-ethreads
in repository guile.

commit ded0f3e7fef05c58886f7d8125b934de53b8c097
Author: Andy Wingo <address@hidden>
Date:   Tue Mar 27 00:30:28 2012 +0200

    (web server ethreads): more use of latin1 accessors
    
    * module/web/server/ethreads.scm (read-http-line, continuation-line?):
      More latin1 changes.
---
 module/web/server/ethreads.scm |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/module/web/server/ethreads.scm b/module/web/server/ethreads.scm
index 9445e8a..7c45661 100644
--- a/module/web/server/ethreads.scm
+++ b/module/web/server/ethreads.scm
@@ -89,14 +89,14 @@
         (bad-request "EOF while reading line: ~S" str))
        (else
         (when (and (eqv? delim #\return)
-                   (eqv? (lookahead-u8 eport) (char->integer #\newline)))
-          (get-u8 eport))
+                   (eqv? (lookahead-latin1-char eport) #\newline))
+          (get-latin1-char eport))
         str)))))
 
 (define (continuation-line? port)
-  (let ((c (lookahead-u8 port)))
-    (or (eqv? c (char->integer #\space))
-        (eqv? c (char->integer #\tab)))))
+  (let ((c (lookahead-latin1-char port)))
+    (or (eqv? c #\space)
+        (eqv? c #\tab))))
 
 ;; Read a request from this port.
 (define (read-request client)



reply via email to

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