aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-03-13 12:41:59 +0000
committerRichard M. Stallman2006-03-13 12:41:59 +0000
commit2e556b3ffbe516fe11913e57564c457116c4f638 (patch)
treef96a023c8b02cca6162efe385763ee47f83975a4
parent7cd3712bda1dc2573877f78338ef7d9424c8cc2a (diff)
downloademacs-2e556b3ffbe516fe11913e57564c457116c4f638.tar.gz
emacs-2e556b3ffbe516fe11913e57564c457116c4f638.zip
(Defining Images): Clean up last change.
-rw-r--r--lispref/display.texi17
1 files changed, 9 insertions, 8 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 1c6de3bb2a9..dcf54f60d1d 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -4130,16 +4130,17 @@ should specify the image as follows:
4130This function returns a suitable search path for images relative to 4130This function returns a suitable search path for images relative to
4131@var{library}. 4131@var{library}.
4132 4132
4133First it searches for the image in a path suitable for @var{library} 4133First it searches for @var{image} in a path suitable for
4134includes @file{../../etc/images} and @file{../etc/images} relative to 4134@var{library}, which includes @file{../../etc/images} and
4135the files in @file{lisp/@var{library}}, as well as in 4135@file{../etc/images} relative to the library file itself, followed by
4136@code{image-load-path} and @code{load-path}. 4136@code{image-load-path} and @code{load-path}.
4137 4137
4138Then this function returns the value of @code{load-path} augmented 4138Then this function returns a list of directories which contains first
4139with the directory that really contains @var{image}. If @var{path} is 4139the directory in which @var{image} was found, followed by the value of
4140given, it is used instead of @code{load-path}. If @var{path} is 4140@code{load-path}. If @var{path} is given, it is used instead of
4141@code{t}, then it returns just the directory that contains 4141@code{load-path}. If @var{path} is @code{t}, then the function just
4142@var{image}. 4142returns the directory that contains @var{image}.
4143@c ??? Meaningm it does not return a list?
4143 4144
4144If @var{no-error} is non-@code{nil}, this function returns @code{nil} 4145If @var{no-error} is non-@code{nil}, this function returns @code{nil}
4145if a suitable path can't be found, rather than signaling an error. 4146if a suitable path can't be found, rather than signaling an error.