wip-elisp update

2019-08-07 Thread larryvalkama
Updated wip-elisp branch onto master. https://github.com/lyrra/guile/tree/wip-elisp-2019

[PATCH] doc: Clarify documentation of 'bytevector-copy!'.

2019-08-07 Thread Gábor Boskovits
-- OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21 From b294afd366b8ce979ed5f549002057240a6ff478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Boskovits?= Date: Wed, 7 Aug 2019 14:34:05 +0200 Subject: [PATCH] doc: Clarify documentation of 'bytevector-copy!'. *

Re: Support Websocket status code

2019-08-07 Thread Nala Ginrut
hi Mark! Yes you're right, the status code should be encoded in close-frame, not HTTP response. Sorry for the wrong patch. ;-) Best regards. On Wed, Aug 7, 2019 at 2:52 PM Mark H Weaver wrote: > Hi, > > Nala Ginrut writes: > > > Hi folks! > > The current response builder will reject status

Re: Support Websocket status code

2019-08-07 Thread Mark H Weaver
Hi, Nala Ginrut writes: > Hi folks! > The current response builder will reject status code less than 600: > ---code- > ((not (and (non-negative-integer? code) (< code 600))) > (bad-response "Bad code: ~a" code)) >