diff options
| author | Richard M. Stallman | 1995-06-19 18:27:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-19 18:27:47 +0000 |
| commit | 5e41cf03b9f1bb91829f4fe1ffa621cabca0566d (patch) | |
| tree | c7b9f470e2a0e3021e6c60af64d138486778406f | |
| parent | 08ddf771a2ac26c2eaf7d50f92e02952d26cc2c8 (diff) | |
| download | emacs-5e41cf03b9f1bb91829f4fe1ffa621cabca0566d.tar.gz emacs-5e41cf03b9f1bb91829f4fe1ffa621cabca0566d.zip | |
Fix up load-path example.
| -rw-r--r-- | lispref/loading.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/loading.texi b/lispref/loading.texi index 4aec67475d6..633b25ff15a 100644 --- a/lispref/loading.texi +++ b/lispref/loading.texi | |||
| @@ -161,7 +161,7 @@ several directories to the front of your default @code{load-path}: | |||
| 161 | (setq load-path | 161 | (setq load-path |
| 162 | (append (list nil "/user/bil/emacs" | 162 | (append (list nil "/user/bil/emacs" |
| 163 | "/usr/local/lisplib" | 163 | "/usr/local/lisplib" |
| 164 | (expand-file-name "~/emacs")) | 164 | "~/emacs") |
| 165 | load-path)) | 165 | load-path)) |
| 166 | @end group | 166 | @end group |
| 167 | @end smallexample | 167 | @end smallexample |
| @@ -169,8 +169,8 @@ several directories to the front of your default @code{load-path}: | |||
| 169 | @c Wordy to rid us of an overfull hbox. --rjc 15mar92 | 169 | @c Wordy to rid us of an overfull hbox. --rjc 15mar92 |
| 170 | @noindent | 170 | @noindent |
| 171 | In this example, the path searches the current working directory first, | 171 | In this example, the path searches the current working directory first, |
| 172 | followed then by the @file{/user/bil/emacs} directory and then by | 172 | followed then by the @file{/user/bil/emacs} directory, the |
| 173 | the @file{/usr/local/lisplib} directory, | 173 | @file{/usr/local/lisplib} directory, and the @file{~/emacs} directory, |
| 174 | which are then followed by the standard directories for Lisp code. | 174 | which are then followed by the standard directories for Lisp code. |
| 175 | 175 | ||
| 176 | The command line options @samp{-l} or @samp{-load} specify a Lisp | 176 | The command line options @samp{-l} or @samp{-load} specify a Lisp |