[uim-commit] r1738 - branches/r5rs/sigscheme
yamaken at freedesktop.org
yamaken at freedesktop.org
Sun Oct 2 07:50:52 PDT 2005
Author: yamaken
Date: 2005-10-02 07:50:50 -0700 (Sun, 02 Oct 2005)
New Revision: 1738
Modified:
branches/r5rs/sigscheme/TODO
branches/r5rs/sigscheme/operations.c
Log:
* sigscheme/operations.c
- (ScmOp_call_with_values): Fix function type for DECLARE_FUNCTION()
* sigscheme/TODO
- Update
Modified: branches/r5rs/sigscheme/TODO
===================================================================
--- branches/r5rs/sigscheme/TODO 2005-10-02 14:26:49 UTC (rev 1737)
+++ branches/r5rs/sigscheme/TODO 2005-10-02 14:50:50 UTC (rev 1738)
@@ -8,8 +8,7 @@
- [uim] Make uim-sh loop workable even if error occurred
- [uim] Make the GaUnit-based testing framework workable
-* Add tests for proper tail recursion with 'apply' and 'receive' to
- test-tail-rec.scm
+* Add tests for proper tail recursion with 'apply' to test-tail-rec.scm
*
- Provide a string escaping procedure. If a SRFI or another de facto standard
Modified: branches/r5rs/sigscheme/operations.c
===================================================================
--- branches/r5rs/sigscheme/operations.c 2005-10-02 14:26:49 UTC (rev 1737)
+++ branches/r5rs/sigscheme/operations.c 2005-10-02 14:50:50 UTC (rev 1738)
@@ -1833,7 +1833,7 @@
ScmEvalState *eval_state)
{
ScmObj vals;
- DECLARE_FUNCTION("call-with-values", ProcedureFixed2);
+ DECLARE_FUNCTION("call-with-values", ProcedureFixedTailRec2);
vals = Scm_call(producer, SCM_NULL);
More information about the uim-commit
mailing list