[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: reverse of autoload
From: |
Carlo de Falco |
Subject: |
Re: reverse of autoload |
Date: |
Tue, 31 Mar 2009 21:59:03 +0200 |
On 31 Mar 2009, at 21:51, Ben Abbott wrote:
Prior to loading the package, was the directory, /Users/carlo/octave/
combinatorics-1.0.7/i386-apple-darwin8.9.1-api-v32/ , already in
your path?
no.
Is it in your path after "pkg unload combinatorics"?
no, but it makes no difference as the autoload map uses absolute paths:
>> file_in_path (path, "partint.oct")
ans = []
>> {autoload().file}{78}
ans = /Users/carlo/octave/combinatorics-1.0.7/i386-apple-darwin8.9.1-
api-v32/partint.oct
>> {autoload().function}{78}
ans = partcnt
>> which partcnt
partcnt is the dynamically-linked function from the file
/Users/carlo/octave/combinatorics-1.0.7/i386-apple-darwin8.9.1-api-v32/
partint.oct
Ben
Thanks,
c.