[Chicken-hackers] [PATCH] Use begin to insert C_DEBUG_GLOBAL_ASSIGN events

2016-03-03 Thread Evan Hanson
Using a let binding causes a different "dest" to be used for the assigned value's node, which (for procedures) means the emitted C_DEBUG_ENTRY event uses a temporary name rather than the procedure's real name. Using a "##core#begin" instead preserves the assigned name. --- compiler.scm | 6 +++---

[Chicken-hackers] [PATCH] Send C_DEBUGGER_REPLY_GET_BYTES responses as unsigned char values

2016-03-03 Thread Evan Hanson
This allows the client to consider the stream as a written u8vector, without needing to mask off the extra bits of any elements outside the byte range. --- dbg-stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbg-stub.c b/dbg-stub.c index 96227de..bbfa3c5 100644 --- a/dbg