aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/loading.texi
diff options
context:
space:
mode:
authorStephen Berman2016-06-13 18:08:22 +0200
committerStephen Berman2016-06-13 18:08:22 +0200
commit20de6679b0b56b4e37fa7e145a3ed33010f3f6d4 (patch)
tree5e76aada3ad2d10b0a3bd27b1554cef565090b63 /doc/lispref/loading.texi
parenta67a4e598d57cd9d6fb6442e747ebabc8da2798a (diff)
downloademacs-20de6679b0b56b4e37fa7e145a3ed33010f3f6d4.tar.gz
emacs-20de6679b0b56b4e37fa7e145a3ed33010f3f6d4.zip
Doc fixes for grammar and typos (bug#23746)
* doc/emacs/files.texi (Customize Save): * doc/emacs/frames.texi (Window Dividers): * doc/emacs/misc.texi (Printing): * doc/lispref/compile.texi (Compiler Errors): * doc/lispref/keymaps.texi (Changing Key Bindings): * doc/lispref/loading.texi (Named Features): * doc/lispref/markers.texi (Marker Insertion Types): * doc/lispref/modes.texi (Mode Hooks): * doc/lispref/text.texi (Undo): * src/floatfns.c (Fldexp): * src/xfaces.c (syms_of_xfaces): Minor doc fixes for grammar and typos (bug#23746).
Diffstat (limited to 'doc/lispref/loading.texi')
-rw-r--r--doc/lispref/loading.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi
index d2d38d7fb5e..81a1922d71c 100644
--- a/doc/lispref/loading.texi
+++ b/doc/lispref/loading.texi
@@ -848,8 +848,8 @@ loaded, into the current Emacs session. This means that the facilities
848associated with @var{feature} are or will be available for other Lisp 848associated with @var{feature} are or will be available for other Lisp
849programs. 849programs.
850 850
851The direct effect of calling @code{provide} is if not already in 851The direct effect of calling @code{provide} is to add @var{feature} to
852@var{features} then to add @var{feature} to the front of that list and 852the front of @code{features} if it is not already in that list and
853call any @code{eval-after-load} code waiting for it (@pxref{Hooks for 853call any @code{eval-after-load} code waiting for it (@pxref{Hooks for
854Loading}). The argument @var{feature} must be a symbol. 854Loading}). The argument @var{feature} must be a symbol.
855@code{provide} returns @var{feature}. 855@code{provide} returns @var{feature}.