diff options
| -rw-r--r-- | lispref/loading.texi | 31 |
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, | |||
| 750 | and the features they require. | 750 | and the features they require. |
| 751 | 751 | ||
| 752 | Each element is a list and describes one library. The @sc{car} of the | 752 | Each element is a list and describes one library. The @sc{car} of the |
| 753 | list is the name of the library, as a string. The rest of the list is | 753 | list is the name of the library, as a string. The rest of the list |
| 754 | composed of these kinds of objects: | 754 | elements have these forms: |
| 755 | 755 | ||
| 756 | @itemize @bullet | 756 | @table @code |
| 757 | @item | 757 | @item @var{fun} |
| 758 | Symbols that were defined by this library. | 758 | The function @var{fun} was defined by this library. |
| 759 | @item | 759 | @item (t . @var{fun}) |
| 760 | Cons cells of the form @code{(require . @var{feature})} indicating | 760 | The function @var{fun} was previously an autoload before this library |
| 761 | features that were required. | 761 | redefined it as a function. The following element is always the |
| 762 | @item | 762 | symbol @var{fun}, which signifies that the library defined @var{fun} |
| 763 | Cons cells of the form @code{(provide . @var{feature})} indicating | 763 | as a function. |
| 764 | features that were provided. | 764 | @item (autoload . @var{fun}) |
| 765 | The function @var{fun} was defined as an autoload. | ||
| 766 | @item (defvar . @var{var}) | ||
| 767 | The symbol @var{var} was defined as a variable. | ||
| 768 | @item (require . @var{feature}) | ||
| 769 | The feature @var{feature} was required. | ||
| 770 | @item (provide . @var{feature}) | ||
| 771 | The feature @var{feature} was provided. | ||
| 765 | @end itemize | 772 | @end itemize |
| 766 | 773 | ||
| 767 | The value of @code{load-history} may have one element whose @sc{car} is | 774 | The value of @code{load-history} may have one element whose @sc{car} is |