diff options
| author | Stephen Berman | 2016-06-13 18:08:22 +0200 |
|---|---|---|
| committer | Stephen Berman | 2016-06-13 18:08:22 +0200 |
| commit | 20de6679b0b56b4e37fa7e145a3ed33010f3f6d4 (patch) | |
| tree | 5e76aada3ad2d10b0a3bd27b1554cef565090b63 /doc/lispref/loading.texi | |
| parent | a67a4e598d57cd9d6fb6442e747ebabc8da2798a (diff) | |
| download | emacs-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.texi | 4 |
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 | |||
| 848 | associated with @var{feature} are or will be available for other Lisp | 848 | associated with @var{feature} are or will be available for other Lisp |
| 849 | programs. | 849 | programs. |
| 850 | 850 | ||
| 851 | The direct effect of calling @code{provide} is if not already in | 851 | The 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 | 852 | the front of @code{features} if it is not already in that list and |
| 853 | call any @code{eval-after-load} code waiting for it (@pxref{Hooks for | 853 | call any @code{eval-after-load} code waiting for it (@pxref{Hooks for |
| 854 | Loading}). The argument @var{feature} must be a symbol. | 854 | Loading}). The argument @var{feature} must be a symbol. |
| 855 | @code{provide} returns @var{feature}. | 855 | @code{provide} returns @var{feature}. |