diff options
| author | Stefan Monnier | 2002-09-26 20:37:46 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-09-26 20:37:46 +0000 |
| commit | a28b5ba33a6d07f68843478f984efd520fe8dde2 (patch) | |
| tree | d744d33f54c333b9c90c1fa8b1c0e1a7857e5ba4 | |
| parent | 8e7dbfdb2768f64f464a1791f8ac200b056da535 (diff) | |
| download | emacs-a28b5ba33a6d07f68843478f984efd520fe8dde2.tar.gz emacs-a28b5ba33a6d07f68843478f984efd520fe8dde2.zip | |
*** empty log message ***
| -rw-r--r-- | lispref/loading.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/loading.texi b/lispref/loading.texi index ae47a1d4d54..147b0a94e66 100644 --- a/lispref/loading.texi +++ b/lispref/loading.texi | |||
| @@ -686,10 +686,10 @@ provided}, unless @var{noerror} is non-@code{nil}. | |||
| 686 | 686 | ||
| 687 | @defun featurep feature &optional subfeature | 687 | @defun featurep feature &optional subfeature |
| 688 | This function returns @code{t} if @var{feature} has been provided in the | 688 | This function returns @code{t} if @var{feature} has been provided in the |
| 689 | current Emacs session (i.e., if @var{feature} is a member of | 689 | current Emacs session (i.e.@:, if @var{feature} is a member of |
| 690 | @code{features}.) If @var{subfeature} is non-nil, then the function | 690 | @code{features}.) If @var{subfeature} is non-nil, then the function |
| 691 | returns @code{t} only if that subfeature is provided as well (i.e. | 691 | returns @code{t} only if that subfeature is provided as well (i.e.@: |
| 692 | if @var{subfeature} is a member of the @var{subfeature} property | 692 | if @var{subfeature} is a member of the @code{subfeature} property |
| 693 | of the @var{feature} symbol.) | 693 | of the @var{feature} symbol.) |
| 694 | @end defun | 694 | @end defun |
| 695 | 695 | ||
| @@ -807,7 +807,7 @@ If @var{library} is a string, it must exactly match the argument of | |||
| 807 | installed library is found by searching @code{load-path}, you should not | 807 | installed library is found by searching @code{load-path}, you should not |
| 808 | include any directory names in @var{library}. | 808 | include any directory names in @var{library}. |
| 809 | 809 | ||
| 810 | @var{library} can also be a feature (i.e. a symbol), in which case, | 810 | @var{library} can also be a feature (i.e.@: a symbol), in which case |
| 811 | @var{form} is evaluated when @code{(provide @var{library})} is called. | 811 | @var{form} is evaluated when @code{(provide @var{library})} is called. |
| 812 | 812 | ||
| 813 | An error in @var{form} does not undo the load, but does prevent | 813 | An error in @var{form} does not undo the load, but does prevent |