diff options
| author | Luc Teirlinck | 2006-03-01 01:58:12 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-03-01 01:58:12 +0000 |
| commit | a88c86f7182d3959b08d06f28e1eb1058eebc89a (patch) | |
| tree | 85080758be02946ec99341f5d97559423ee37de8 | |
| parent | a86b01fa400b86ce8c6d1b034c34bcdf3b94faa3 (diff) | |
| download | emacs-a88c86f7182d3959b08d06f28e1eb1058eebc89a.tar.gz emacs-a88c86f7182d3959b08d06f28e1eb1058eebc89a.zip | |
(Load Suffixes): Fix typos.
| -rw-r--r-- | lispref/loading.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/loading.texi b/lispref/loading.texi index f063fa86e5e..7d410ee1a10 100644 --- a/lispref/loading.texi +++ b/lispref/loading.texi | |||
| @@ -180,7 +180,7 @@ We now describe some technical details about the exact suffixes that | |||
| 180 | This is a list of suffixes indicating (compiled or source) Emacs Lisp | 180 | This is a list of suffixes indicating (compiled or source) Emacs Lisp |
| 181 | files. It should not include the empty string. @code{load} uses | 181 | files. It should not include the empty string. @code{load} uses |
| 182 | these suffixes in order when it appends Lisp suffixes to the specified | 182 | these suffixes in order when it appends Lisp suffixes to the specified |
| 183 | file name. The standard value is @code{(".elc" "el")} which produces | 183 | file name. The standard value is @code{(".elc" ".el")} which produces |
| 184 | the behavior described in the previous section. | 184 | the behavior described in the previous section. |
| 185 | @end defvar | 185 | @end defvar |
| 186 | 186 | ||
| @@ -206,7 +206,7 @@ try, in order, when its @var{must-suffix} argument is non-@code{nil}. | |||
| 206 | This takes both @code{load-suffixes} and @code{load-file-rep-suffixes} | 206 | This takes both @code{load-suffixes} and @code{load-file-rep-suffixes} |
| 207 | into account. If @code{load-suffixes}, @code{jka-compr-load-suffixes} | 207 | into account. If @code{load-suffixes}, @code{jka-compr-load-suffixes} |
| 208 | and @code{load-file-rep-suffixes} all have their standard values, this | 208 | and @code{load-file-rep-suffixes} all have their standard values, this |
| 209 | function returns @code{(".elc" "elc.gz" ".el" ".el.gz")} if Auto | 209 | function returns @code{(".elc" ".elc.gz" ".el" ".el.gz")} if Auto |
| 210 | Compression mode is enabled and @code{(".elc" ".el")} if Auto | 210 | Compression mode is enabled and @code{(".elc" ".el")} if Auto |
| 211 | Compression mode is disabled. | 211 | Compression mode is disabled. |
| 212 | @end defun | 212 | @end defun |