aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/loading.texi31
1 files changed, 19 insertions, 12 deletions
diff --git a/lispref/loading.texi b/lispref/loading.texi
index 147b0a94e66..7fcf6fbc4b2 100644
--- a/lispref/loading.texi
+++ b/lispref/loading.texi
@@ -750,18 +750,25 @@ names of functions and variables they define, the features they provide,
750and the features they require. 750and the features they require.
751 751
752Each element is a list and describes one library. The @sc{car} of the 752Each element is a list and describes one library. The @sc{car} of the
753list is the name of the library, as a string. The rest of the list is 753list is the name of the library, as a string. The rest of the list
754composed of these kinds of objects: 754elements have these forms:
755 755
756@itemize @bullet 756@table @code
757@item 757@item @var{fun}
758Symbols that were defined by this library. 758The function @var{fun} was defined by this library.
759@item 759@item (t . @var{fun})
760Cons cells of the form @code{(require . @var{feature})} indicating 760The function @var{fun} was previously an autoload before this library
761features that were required. 761redefined it as a function. The following element is always the
762@item 762symbol @var{fun}, which signifies that the library defined @var{fun}
763Cons cells of the form @code{(provide . @var{feature})} indicating 763as a function.
764features that were provided. 764@item (autoload . @var{fun})
765The function @var{fun} was defined as an autoload.
766@item (defvar . @var{var})
767The symbol @var{var} was defined as a variable.
768@item (require . @var{feature})
769The feature @var{feature} was required.
770@item (provide . @var{feature})
771The feature @var{feature} was provided.
765@end itemize 772@end itemize
766 773
767The value of @code{load-history} may have one element whose @sc{car} is 774The value of @code{load-history} may have one element whose @sc{car} is