Google Code Exporter
Google Code Exporter
``` It seems a typo (but harmless), that the last couple of parameters of socket_open() and subr_make_socket() mismatches, I think they should be transposed: Index: src/socket.cpp =================================================================== --- src/socket.cpp (revision...
``` The SRFI 39 parameterize allows zero clauses. Zero clauses can occur from macro expansion or when hacking and temporarily commenting-out the clauses. Ypsilon 0.9.6-trunk/r503 Copyright (c) 2009 Y.Fujita, LittleWing...
``` [ Note that this is copy of https://bugs.launchpad.net/ikarus/+bug/315804, which got implemented as proposed below ] While Ypsilon provides `directory-list', it doesn't expose the more primitive {open,read,close}dir() API directly. As...
``` These should return zero: > (bitwise-bit-count 0) -65 > (fxbit-count 0) -65 ``` Original issue reported on code.google.com by `[email protected]` on 22 Aug 2009 at 9:04
``` Procedure number->string's precision is required be positive as [1], but $ ypsilon Ypsilon 0.9.6-trunk/r503 Copyright (c) 2009 Y.Fujita, LittleWing Company Limited. > (number->string 3.14 10 0) "3.14" > (number->string...
``` Index: src/printer.cpp =================================================================== --- src/printer.cpp (revision 503) +++ src/printer.cpp (working copy) @@ -120,7 +120,7 @@ continue; } else { int bytes = cnvt_utf8_to_ucs4(utf8 + i, &ucs4); - if (bytes...
``` Procedure 'bitwise-bit-field' is required to check the 2nd and 3rd arguments [1], while ypsilon returns its calls normally as follows: Ypsilon 0.9.6-trunk/r503 Copyright (c) 2009 Y.Fujita, LittleWing Company Limited....
``` Procedure 'bitwise-bit-field' is required to check the 2nd and 3rd arguments [1], while ypsilon returns normally as follows: Ypsilon 0.9.6-trunk/r503 Copyright (c) 2009 Y.Fujita, LittleWing Company Limited. > (bitwise-bit-field...
``` This is an example from Waddell and Dybvig's paper "Extending the Scope of Syntactic Abstraction", but I don't think it should work in R6RS Scheme: Ypsilon 0.9.6-trunk/r503 Copyright (c)...
``` What steps will reproduce the problem? 1. Create the file: (import (rnrs)) "cioé" the last char in the string is the latin-1 accented "e". 2. Run it. What is...