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: use-module vs. use-modules


Klaus Schilling <Klaus.Schilling@home.ivm.de> writes:

> What is the difference between
> 
> (define-module (gnu fsf))
> (use-modules (stall man))
> 
>     and
> 
> (define-module (gnu fsf)
> :use-modules (stall man))
> 
>     ?

that's easy.  the second form causes an "unrecognized defmodule
argument" error.  :->

thi