aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-06 02:35:42 +0000
committerJuanma Barranquero2006-11-06 02:35:42 +0000
commit32a37bc62891ebfd29880dfe82155158ea11c8e1 (patch)
tree06879d31bd4358de32cbb7c1227a5350666b9999
parenta3c473b2cf26c41fd01eb605fd711ead82adc1de (diff)
downloademacs-32a37bc62891ebfd29880dfe82155158ea11c8e1.tar.gz
emacs-32a37bc62891ebfd29880dfe82155158ea11c8e1.zip
(list-load-path-shadows): Fix typo in docstring.
-rw-r--r--lisp/emacs-lisp/shadow.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el
index 5a2521ff7cb..7162aa822b7 100644
--- a/lisp/emacs-lisp/shadow.el
+++ b/lisp/emacs-lisp/shadow.el
@@ -184,17 +184,17 @@ and that each of these directories contains a file called XXX.el. Then
184XXX.el in the site-lisp directory is referred to by all of: 184XXX.el in the site-lisp directory is referred to by all of:
185\(require 'XXX\), \(autoload .... \"XXX\"\), \(load-library \"XXX\"\) etc. 185\(require 'XXX\), \(autoload .... \"XXX\"\), \(load-library \"XXX\"\) etc.
186 186
187The first XXX.el file prevents emacs from seeing the second \(unless 187The first XXX.el file prevents Emacs from seeing the second \(unless
188the second is loaded explicitly via load-file\). 188the second is loaded explicitly via `load-file'\).
189 189
190When not intended, such shadowings can be the source of subtle 190When not intended, such shadowings can be the source of subtle
191problems. For example, the above situation may have arisen because the 191problems. For example, the above situation may have arisen because the
192XXX package was not distributed with versions of emacs prior to 192XXX package was not distributed with versions of Emacs prior to
19319.30. An emacs maintainer downloaded XXX from elsewhere and installed 19319.30. An Emacs maintainer downloaded XXX from elsewhere and installed
194it. Later, XXX was updated and included in the emacs distribution. 194it. Later, XXX was updated and included in the Emacs distribution.
195Unless the emacs maintainer checks for this, the new version of XXX 195Unless the Emacs maintainer checks for this, the new version of XXX
196will be hidden behind the old \(which may no longer work with the new 196will be hidden behind the old \(which may no longer work with the new
197emacs version\). 197Emacs version\).
198 198
199This function performs these checks and flags all possible 199This function performs these checks and flags all possible
200shadowings. Because a .el file may exist without a corresponding .elc 200shadowings. Because a .el file may exist without a corresponding .elc