guile-user
[Top][All Lists]
Advanced

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

Re: Possible bug with re-export, :select and GOOPS accessors?!


From: Thomas Wawrzinek
Subject: Re: Possible bug with re-export, :select and GOOPS accessors?!
Date: Wed, 22 Aug 2001 14:09:17 +0200 (MEST)

Hi!

The following patch fixes my problem. Seems, that (module-re-export! ...)
uses (module-variable ...) instead of (module-local-variable ...), so I
added it to (resolve-interface ...).

Note, that I'm not sure what I'm doing here, because I'm not familiar with
the module system ...

Regards,

                        Thomas

--- boot-9.scm  Fri Jul 13 17:03:54 2001
+++ ../../guile-1.5.1-fix/ice-9/boot-9.scm      Wed Aug 22 13:58:15 2001
@@ -1713,6 +1713,7 @@
                              (seen (if direct? bspec (cdr bspec))))
                         (module-add! custom-i (renamer seen)
                                      (or (module-local-variable module orig)
+                                        (module-variable module orig)
                                          (error
                                           ;; fixme: format manually for now
                                           (simple-format



reply via email to

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