mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* scheme-evaluation.texi: Added load-from-path'. Updated
load':
it doesn't use the load paths.
This commit is contained in:
parent
4b8ec61962
commit
a7c0d85cb6
2 changed files with 15 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-07-11 Gary Houston <ghouston@arglist.com>
|
||||
|
||||
* scheme-evaluation.texi: Added `load-from-path'. Corrected `load':
|
||||
it doesn't use the load paths.
|
||||
|
||||
2001-07-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
|
||||
|
||||
* scheme-data.texi (Hook Reference): Removed documentation for
|
||||
|
|
|
@ -245,11 +245,16 @@ signalled.
|
|||
|
||||
@rnindex load
|
||||
@deffn procedure load filename
|
||||
Load @var{file} and evaluate its contents in the top-level environment.
|
||||
The load paths are searched. If the variable @code{%load-hook} is
|
||||
defined, it should be bound to a procedure that will be called before
|
||||
any code is loaded. See documentation for @code{%load-hook} later in
|
||||
this section.
|
||||
Load @var{filename} and evaluate its contents in the top-level
|
||||
environment. The load paths are not searched. If the variable
|
||||
@code{%load-hook} is defined, it should be bound to a procedure that
|
||||
will be called before any code is loaded. See documentation for
|
||||
@code{%load-hook} later in this section.
|
||||
@end deffn
|
||||
|
||||
@deffn procedure load-from-path filename
|
||||
Similar to @code{load}, but searches for @var{filename} in the load
|
||||
paths.
|
||||
@end deffn
|
||||
|
||||
@deffn primitive primitive-load filename
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue