chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] Schelog


From: Alex Charlton
Subject: Re: [Chicken-users] Schelog
Date: Mon, 28 Jul 2014 19:19:53 -0400
User-agent: mu4e 0.9.9.5; emacs 24.4.50.1

Hi Felix,

Thanks for porting this! I’m looking forward to using it.

In doing some cursory tests, I noticed that %is expands to use some 
non-exported identifiers. This small patch fixes it:

--- schelog-old/schelog-module.scm      2014-07-28 19:05:04.127695000 -0400
+++ schelog/schelog-module.scm  2014-07-28 19:00:26.979695001 -0400
@@ -4,7 +4,7 @@
                 (%and schelog:deref*)
                 (%cut-delimiter schelog:deref*)
                 %rel
-                %is
+                (%is schelog:deref* schelog:unbound-ref? schelog:ref?)
                 %assert
                 %assert-a
                 %free-vars


Felix Winkelmann writes:

> Hello!
>
>
> Dorai Sitaram's SCHELOG Prolog-in-Scheme (including Bradley Lucier's
> optimizations) should be available in the next hours. It used to
> available for CHICKEN 3, but wasn't ported yet to use hygienic
> macros. Well, now it is.
>
> I have only tested it with 4.8.0.3, and ran only basic tests,
> including some of the examples provided in the original SCHELOG
> distribution). If you encounter any problems, please let me know.
>
>
> felix
>
> _______________________________________________
> Chicken-users mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/chicken-users


-- 
Alex




reply via email to

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