On Thu, Oct 22, 2009 at 10:10:14PM -0400, Taylor Venable wrote:
> Error: unbound variable: ssax:scan-Misc
> 
>       Call history:
> 
>       <syntax>                (display sxml)
>       <syntax>                (newline)
>       <syntax>                (run2 "request.xml")
>       <eval>          (run2 "request.xml")
>       <eval>          [run2] (open-input-file file)
>       <eval>          [run2] ((ssax:make-parser NEW-LEVEL-SEED (lambda 
>       (elem-gi  attributes namespaces expected-content seed) seed......
>       <eval>          [run2] (scan-for-significant-prolog-token-1630 
>       port607 seed608)
>       <eval>          [scan-for-significant-prolog-token-1630] 
>       (ssax:scan-Misc633  port607)    <--
> 
> -------------------------------------------------------------
> 
> I can't see the problem in my code, if there is one; I'm just starting  
> to work with this so any ideas are appreciated.  Thank you.

This probably has something to do with the module exports.  I don't
fully understand module exports for macros.  Please try the attached
patch.  I will be gone during the weekend, so if it doesn't work,
perhaps other people can help.

Cheers,
Peter
-- 
http://sjamaan.ath.cx
--
"The process of preparing programs for a digital computer
 is especially attractive, not only because it can be economically
 and scientifically rewarding, but also because it can be an aesthetic
 experience much like composing poetry or music."
                                                        -- Donald Knuth
Index: ssax-chicken.scm
===================================================================
--- ssax-chicken.scm    (revision 16223)
+++ ssax-chicken.scm    (working copy)
@@ -3,7 +3,7 @@
 
 (module ssax
 
-((ssax:make-parser fold)
+((ssax:make-parser fold ssax:scan-Misc)
  (ssax:make-pi-parser fold)
  (ssax:make-elem-parser fold)
  ssax:xml->sxml)

Attachment: pgpnVThiNgeJZ.pgp
Description: PGP signature

_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to