diff options
author | Melissa Weisshaus <melissa@gnu.org> | 1995-06-08 15:34:01 +0000 |
---|---|---|
committer | Melissa Weisshaus <melissa@gnu.org> | 1995-06-08 15:34:01 +0000 |
commit | cc8c51f1c002fe823c45608b3c9a3d8a85f6f99e (patch) | |
tree | 9eb2ef1ef9b29df8223aeecb2d68b6484a12148e /lispref/loading.texi | |
parent | 7ac268120e9e5ff944262ae4ad03232559d5a6d8 (diff) | |
download | emacs-cc8c51f1c002fe823c45608b3c9a3d8a85f6f99e.tar.gz |
fixed errors that appeared during update to 19.29.
Diffstat (limited to 'lispref/loading.texi')
-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 3f88132b20b..2694dc44a19 100644 --- a/lispref/loading.texi +++ b/lispref/loading.texi @@ -181,7 +181,7 @@ without altering @code{load-path}. Dumping Emacs uses a special value of @code{load-path}. If the value of @code{load-path} at the end of dumping is unchanged (that is, still the same special value), the dumped Emacs switches to the ordinary -@code{load-path} value when it starts up, as decribed above. But if +@code{load-path} value when it starts up, as described above. But if @code{load-path} has any other value at the end of dumping, that value is used for execution of the dumped Emacs also. @@ -616,7 +616,7 @@ execution of the rest of @var{form}. In general, well-designed Lisp programs should not use this feature. The clean and modular ways to interact with a Lisp library are (1) examine and set the library's variables (those which are meant for -outside use), and and (2) call the library's functions. If you wish to +outside use), and (2) call the library's functions. If you wish to do (1), you can do it immediately---there is no need to wait for when the library is loaded. To do (2), you must load the library (preferably with @code{require}). |