diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/loading.texi | 15 |
2 files changed, 13 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 8e88e5026e8..0f4abc7a984 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-01-01 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * loading.texi (Where Defined): Make it clearer that these are | ||
| 4 | loaded files (Bug#5068). | ||
| 5 | |||
| 1 | 2009-12-29 Chong Yidong <cyd@stupidchicken.com> | 6 | 2009-12-29 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * minibuf.texi (Completion Styles): Document `initials' style. | 8 | * minibuf.texi (Completion Styles): Document `initials' style. |
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index 8ccc0071e2a..416d4513b67 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi | |||
| @@ -823,13 +823,14 @@ without extension. | |||
| 823 | @code{load-history}. | 823 | @code{load-history}. |
| 824 | 824 | ||
| 825 | @defvar load-history | 825 | @defvar load-history |
| 826 | This variable's value is an alist connecting library file names with the | 826 | This value of this variable is an alist that associates the names of |
| 827 | names of functions and variables they define, the features they provide, | 827 | loaded library files with the names of the functions and variables |
| 828 | and the features they require. | 828 | they defined, as well as the features they provided or required. |
| 829 | 829 | ||
| 830 | Each element is a list and describes one library. The @sc{car} of the | 830 | Each element in this alist describes one loaded library (including |
| 831 | list is the absolute file name of the library, as a string. The rest | 831 | libraries that are preloaded at startup). It is a list whose @sc{car} |
| 832 | of the list elements have these forms: | 832 | is the absolute file name of the library (a string). The rest of the |
| 833 | list elements have these forms: | ||
| 833 | 834 | ||
| 834 | @table @code | 835 | @table @code |
| 835 | @item @var{var} | 836 | @item @var{var} |