@code for %load-path
authorKevin Ryde <user42@zip.com.au>
Fri, 14 Jan 2005 23:23:08 +0000 (23:23 +0000)
committerKevin Ryde <user42@zip.com.au>
Fri, 14 Jan 2005 23:23:08 +0000 (23:23 +0000)
doc/ref/api-evaluation.texi
doc/ref/api-modules.texi

index 384b628..7cfb7e8 100644 (file)
@@ -433,7 +433,7 @@ documentation for @code{%load-hook} later in this section.
 
 @deffn {Scheme Procedure} primitive-load-path filename
 @deffnx {C Function} scm_primitive_load_path (filename)
-Search @var{%load-path} for the file named @var{filename} and
+Search @code{%load-path} for the file named @var{filename} and
 load it into the top-level environment.  If @var{filename} is a
 relative pathname and is not found in the list of search paths,
 an error is signalled.
@@ -441,7 +441,7 @@ an error is signalled.
 
 @deffn {Scheme Procedure} %search-load-path filename
 @deffnx {C Function} scm_sys_search_load_path (filename)
-Search @var{%load-path} for the file named @var{filename},
+Search @code{%load-path} for the file named @var{filename},
 which must be readable by the current user.  If @var{filename}
 is found in the list of paths to search or is an absolute
 pathname, return its full pathname.  Otherwise, return
index 143c4f4..e60af4c 100644 (file)
@@ -217,7 +217,7 @@ types of access are handled by the syntactic form @code{use-modules},
 which accepts one or more interface specifications and, upon evaluation,
 arranges for those interfaces to be available to the current module.
 This process may include locating and loading code for a given module if
-that code has not yet been loaded, following %load-path (@pxref{Build
+that code has not yet been loaded, following @code{%load-path} (@pxref{Build
 Config}).
 
 An @dfn{interface specification} has one of two forms.  The first