Hi,

"Bryce L Nordgren" <[EMAIL PROTECTED]> writes:

> 1st: I don't know anything about Scheme.  Scheme/SLIB is required for GnuCash 
> which has ~4 years
> of my books in it.

This problem with `(ice-9 slib)' that you describe is a known one, which
are working on.

In the meantime, you can modify your `ice-9/slib.scm' so that it
contains the following lines (and nothing more):

  (define-module (ice-9 slib)
    :export (slib:load slib:load-source defmacro:load
             implementation-vicinity library-vicinity home-vicinity
             scheme-implementation-type scheme-implementation-version
             output-port-width output-port-height array-indexes
             make-random-state
             -1+ <? <=? =? >? >=?
             require slib:error slib:exit slib:warn slib:eval
             defmacro:eval logical:logand logical:logior logical:logxor
             logical:lognot logical:ash logical:logcount logical:integer-length
             logical:bit-extract logical:integer-expt logical:ipow-by-squaring
             slib:eval-load slib:tab slib:form-feed difftime offset-time
             software-type)
    :replace (delete-file open-file provide provided? system)
    :no-backtrace)

  (load-from-path "slib/guile.init")


That should fix the problem.

Thanks,
Ludovic.



_______________________________________________
Bug-guile mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-guile

Reply via email to