diff options
| author | Glenn Morris | 2009-07-11 19:39:24 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-07-11 19:39:24 +0000 |
| commit | 4c98b9edb62f56c3dd817ec102f14ddad04b0b7c (patch) | |
| tree | a2e5a6a6a4f88b1dfe92700b9923a49c0aeac4fd /doc | |
| parent | 748c30f4a350c04db86541b3c5b8d6b5ab8d9e11 (diff) | |
| download | emacs-4c98b9edb62f56c3dd817ec102f14ddad04b0b7c.tar.gz emacs-4c98b9edb62f56c3dd817ec102f14ddad04b0b7c.zip | |
Kevin Ryde <user42 at zip.com.au>
(Named Features): Refer to eval-after-load.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 10 | ||||
| -rw-r--r-- | doc/lispref/loading.texi | 9 |
2 files changed, 10 insertions, 9 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index fc709b05d14..41d866f35e7 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,14 +1,14 @@ | |||
| 1 | 2009-07-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Backslash): Fix typo. | ||
| 4 | |||
| 5 | 2009-07-11 Kevin Ryde <user42@zip.com.au> | 1 | 2009-07-11 Kevin Ryde <user42@zip.com.au> |
| 6 | 2 | ||
| 7 | * hooks.texi (Standard Hooks): Fix cross-references. | 3 | * hooks.texi (Standard Hooks): Fix cross-references. |
| 8 | 4 | ||
| 5 | * loading.texi (Named Features): Refer to eval-after-load. | ||
| 6 | |||
| 9 | 2009-07-11 Glenn Morris <rgm@gnu.org> | 7 | 2009-07-11 Glenn Morris <rgm@gnu.org> |
| 10 | 8 | ||
| 11 | * elisp.texi (Top): Display copyright notice at start of non-TeX. | 9 | * searching.texi (Regexp Backslash): Fix typo. |
| 10 | |||
| 11 | * elisp.texi (Top): Display copyright notice at start of non-TeX. | ||
| 12 | 12 | ||
| 13 | 2009-07-10 Glenn Morris <rgm@gnu.org> | 13 | 2009-07-10 Glenn Morris <rgm@gnu.org> |
| 14 | 14 | ||
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index d093fde1928..f39efbac6a5 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi | |||
| @@ -733,10 +733,11 @@ loaded, into the current Emacs session. This means that the facilities | |||
| 733 | associated with @var{feature} are or will be available for other Lisp | 733 | associated with @var{feature} are or will be available for other Lisp |
| 734 | programs. | 734 | programs. |
| 735 | 735 | ||
| 736 | The direct effect of calling @code{provide} is to add @var{feature} to | 736 | The direct effect of calling @code{provide} is if not already in |
| 737 | the front of the list @code{features} if it is not already in the list. | 737 | @var{features} then to add @var{feature} to the front of that list and |
| 738 | The argument @var{feature} must be a symbol. @code{provide} returns | 738 | call any @code{eval-after-load} code waiting for it (@pxref{Hooks for |
| 739 | @var{feature}. | 739 | Loading}). The argument @var{feature} must be a symbol. |
| 740 | @code{provide} returns @var{feature}. | ||
| 740 | 741 | ||
| 741 | If provided, @var{subfeatures} should be a list of symbols indicating | 742 | If provided, @var{subfeatures} should be a list of symbols indicating |
| 742 | a set of specific subfeatures provided by this version of | 743 | a set of specific subfeatures provided by this version of |