This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: gak! slib


Mark Galassi <rosalia@nis.lanl.gov> writes:

> the jacal manual says you should do (load
> "/usr/local/lib/slib/jacal/math.scm").

The jacal manual tells you to do

  (slib:load "/usr/local/lib/jacal/math.scm")

Although slib:load is supposed to behave like load there is one
important difference: slib:load sets the variable *load-pathname* to
the file currently being loaded.  This property is used by slib, so
using load will very probably cause an error.

Note that this is not peculiarities of Guile's slib support.  The
situation is the same in SCM.

/mdj