comparison lispref/display.texi @ 77123:4d7a5d9bbe76

improve breaks in 8.5x11
author Karl Berry <karl@gnu.org>
date Wed, 11 Apr 2007 16:27:33 +0000
parents f9914fb8f8fa
children 467b5b7572bd
comparison
equal deleted inserted replaced
77122:45143a80737a 77123:4d7a5d9bbe76
1363 this feature, you do not need to create a face each time you want to 1363 this feature, you do not need to create a face each time you want to
1364 specify a particular attribute for certain text. @xref{Face 1364 specify a particular attribute for certain text. @xref{Face
1365 Attributes}. 1365 Attributes}.
1366 1366
1367 @item 1367 @item
1368 A cons cell of the form @code{(foreground-color . @var{color-name})} or 1368 A cons cell, either of the form @code{(foreground-color . @var{color-name})} or
1369 @code{(background-color . @var{color-name})}. These elements specify 1369 @code{(background-color . @var{color-name})}. These elements specify
1370 just the foreground color or just the background color. 1370 just the foreground color or just the background color.
1371 1371
1372 @code{(foreground-color . @var{color-name})} has the same effect as 1372 @code{(foreground-color . @var{color-name})} has the same effect as
1373 @code{(:foreground @var{color-name})}; likewise for the background. 1373 @code{(:foreground @var{color-name})}; likewise for the background.
4136 4136
4137 @defun image-load-path-for-library library image &optional path no-error 4137 @defun image-load-path-for-library library image &optional path no-error
4138 This function returns a suitable search path for images used by the 4138 This function returns a suitable search path for images used by the
4139 Lisp package @var{library}. 4139 Lisp package @var{library}.
4140 4140
4141 The function searches for @var{image} first in @code{image-load-path} 4141 The function searches for @var{image} first using @code{image-load-path},
4142 (excluding @file{@code{data-directory}/images}) and then in 4142 excluding @file{@code{data-directory}/images}, and then in
4143 @code{load-path}, followed by a path suitable for @var{library}, which 4143 @code{load-path}, followed by a path suitable for @var{library}, which
4144 includes @file{../../etc/images} and @file{../etc/images} relative to 4144 includes @file{../../etc/images} and @file{../etc/images} relative to
4145 the library file itself, and finally in 4145 the library file itself, and finally in
4146 @file{@code{data-directory}/images}. 4146 @file{@code{data-directory}/images}.
4147 4147