]> git.eshelyaron.com Git - emacs.git/commitdiff
(create-image): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Wed, 22 Aug 2007 07:50:47 +0000 (07:50 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 22 Aug 2007 07:50:47 +0000 (07:50 +0000)
lisp/image.el
src/ChangeLog

index d63c69cafed94c9ab4e152d2dc4c538211aae521..e00a50ddc035afa6a27199dcb877ebb5d4aced16 100644 (file)
@@ -353,7 +353,12 @@ Optional PROPS are additional image attributes to assign to the image,
 like, e.g. `:mask MASK'.
 Value is the image created, or nil if images of type TYPE are not supported.
 
-Images should not be larger than specified by `max-image-size'."
+Images should not be larger than specified by `max-image-size'.
+
+Image file names that are not absolute are searched for in the
+\"images\" sub-directory of `data-directory' and
+`x-bitmap-file-path' (in that order)."
+  ;; It is x_find_image_file in image.c that sets the search path.
   (setq type (image-type file-or-data type data-p))
   (when (image-type-available-p type)
     (append (list 'image :type type (if data-p :data :file) file-or-data)
index e9095f195c23c3d9f123a222352d0ad1e039cebd..c57e61746329c6856eb3f96bd8c269b20136eaad 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-22  Glenn Morris  <rgm@gnu.org>
+
+       * image.c (x_find_image_file): Search in etc/images/ rather than
+       etc/.
+
 2007-08-22  Paul Pogonyshev  <pogonyshev@gmx.net>
 
        * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.