chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] Redefinition of imported binding gets implicitly exp


From: Andy Bennett
Subject: Re: [Chicken-users] Redefinition of imported binding gets implicitly exported
Date: Fri, 25 Oct 2013 15:14:24 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130116 Icedove/10.0.12

Hi,

> I get the wrong binding for process when I (use m):
> 
> -----
> #;1> (use m)
> ; loading ./m.import.so ...
> ; loading ./m.so ...
> #;2> (process)
> hello
> -----

Of course... I was expecting the posix unit's binding for process:

-----
#;1> (use posix)
; loading library posix ...
#;2> process
#<procedure (process cmd2077 . tmp20762078)>
#;3> (use m)
; loading ./m.import.so ...
; loading ./m.so ...
#;4> process
#<procedure (f_12177 . args2448)>
#;5> (process)
hello
-----



Regards,
@ndy

-- 
address@hidden
http://www.ashurst.eu.org/
0x7EBA75FF




reply via email to

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