aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2009-07-11 19:39:24 +0000
committerGlenn Morris2009-07-11 19:39:24 +0000
commit4c98b9edb62f56c3dd817ec102f14ddad04b0b7c (patch)
treea2e5a6a6a4f88b1dfe92700b9923a49c0aeac4fd /doc
parent748c30f4a350c04db86541b3c5b8d6b5ab8d9e11 (diff)
downloademacs-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/ChangeLog10
-rw-r--r--doc/lispref/loading.texi9
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 @@
12009-07-11 Glenn Morris <rgm@gnu.org>
2
3 * searching.texi (Regexp Backslash): Fix typo.
4
52009-07-11 Kevin Ryde <user42@zip.com.au> 12009-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
92009-07-11 Glenn Morris <rgm@gnu.org> 72009-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
132009-07-10 Glenn Morris <rgm@gnu.org> 132009-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
733associated with @var{feature} are or will be available for other Lisp 733associated with @var{feature} are or will be available for other Lisp
734programs. 734programs.
735 735
736The direct effect of calling @code{provide} is to add @var{feature} to 736The direct effect of calling @code{provide} is if not already in
737the 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
738The argument @var{feature} must be a symbol. @code{provide} returns 738call any @code{eval-after-load} code waiting for it (@pxref{Hooks for
739@var{feature}. 739Loading}). The argument @var{feature} must be a symbol.
740@code{provide} returns @var{feature}.
740 741
741If provided, @var{subfeatures} should be a list of symbols indicating 742If provided, @var{subfeatures} should be a list of symbols indicating
742a set of specific subfeatures provided by this version of 743a set of specific subfeatures provided by this version of