Mercurial > emacs
changeset 69418:2f43ac9fe122
(Defining Images): Add image-load-path-for-library.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Sat, 11 Mar 2006 22:39:35 +0000 |
parents | d8214181502b |
children | e043e733d1f5 |
files | lispref/ChangeLog lispref/display.texi |
diffstat | 2 files changed, 33 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/ChangeLog Sat Mar 11 22:37:08 2006 +0000 +++ b/lispref/ChangeLog Sat Mar 11 22:39:35 2006 +0000 @@ -1,3 +1,7 @@ +2006-03-11 Bill Wohler <wohler@newt.com> + + * display.texi (Defining Images): Add image-load-path-for-library. + 2006-03-11 Luc Teirlinck <teirllm@auburn.edu> * text.texi (Adaptive Fill): Fix Texinfo usage.
--- a/lispref/display.texi Sat Mar 11 22:37:08 2006 +0000 +++ b/lispref/display.texi Sat Mar 11 22:39:35 2006 +0000 @@ -4125,6 +4125,35 @@ @end example @end defvar +@defun image-load-path-for-library library image &optional path no-error +Return a suitable search path for images relative to @var{library}. + +Images for @var{library} are searched for in @file{../../etc/images} +and @file{../etc/images} relative to the files in +@file{lisp/@var{library}} as well as in @code{image-load-path} and +@var{load-path}. + +This function returns the value of @code{load-path} augmented with the +directory containing @var{image}. If @var{path} is given, it is used +instead of @code{load-path}. If @code{path} is @code{t}, just return +the directory that contains @var{image}. + +If @var{no-error} is non-nil, this function returns @code{nil} if a +suitable path can't be found rather than signaling an error. + +Here is an example that uses a common idiom to provide compatibility +with versions of Emacs that lack the variable @code{image-load-path}: + +@example +(let ((load-path + (image-load-path-for-library "mh-e" "mh-logo.xpm")) + (image-load-path + (image-load-path-for-library "mh-e" "mh-logo.xpm" + 'image-load-path))) + (mh-tool-bar-folder-buttons-init)) +@end example +@end defun + @node Showing Images @subsection Showing Images