changeset 52764:f2fb09e111f7

(Library Search): Correct default value of load-suffixes. (Named Features): Fix typo.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 05 Oct 2003 23:21:48 +0000
parents 9f0dd16cb11b
children 80ffc8b54a5c
files lispref/loading.texi
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/loading.texi	Sun Oct 05 17:23:05 2003 +0000
+++ b/lispref/loading.texi	Sun Oct 05 23:21:48 2003 +0000
@@ -289,7 +289,7 @@
 @defvar load-suffixes
 This variable is a list of suffixes (strings) that @code{load} should
 try adding to the specified file name.  The default value is
-@code{(".el" ".elc")}.  There is no need to include the null suffix.
+@code{(".elc" ".el")}.  There is no need to include the null suffix.
 @end defvar
 
 @node Loading Non-ASCII
@@ -669,7 +669,7 @@
 @end smallexample
 
 When a file is loaded to satisfy an autoload, and it stops due to an
-error in the evaluating its contents, any function definitions or
+error in the evaluation of its contents, any function definitions or
 @code{provide} calls that occurred during the load are undone.
 @xref{Autoload}.
 @end defun