summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-06-19 18:27:47 +0000
committerRichard M. Stallman <rms@gnu.org>1995-06-19 18:27:47 +0000
commita17b23eb66d2eb52b09e15cc7632226e35a23167 (patch)
tree9bc1ac0400e04082d5c67217419e5013460fb95c /lispref
parentbd83823f97be3bab15896c1c7798b1bf3bbeb162 (diff)
downloademacs-a17b23eb66d2eb52b09e15cc7632226e35a23167.tar.gz
Fix up load-path example.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/loading.texi6
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}:
(setq load-path
(append (list nil "/user/bil/emacs"
"/usr/local/lisplib"
- (expand-file-name "~/emacs"))
+ "~/emacs")
load-path))
@end group
@end smallexample
@@ -169,8 +169,8 @@ several directories to the front of your default @code{load-path}:
@c Wordy to rid us of an overfull hbox. --rjc 15mar92
@noindent
In this example, the path searches the current working directory first,
-followed then by the @file{/user/bil/emacs} directory and then by
-the @file{/usr/local/lisplib} directory,
+followed then by the @file{/user/bil/emacs} directory, the
+@file{/usr/local/lisplib} directory, and the @file{~/emacs} directory,
which are then followed by the standard directories for Lisp code.
The command line options @samp{-l} or @samp{-load} specify a Lisp