diff options
author | Glenn Morris <rgm@gnu.org> | 2007-08-22 07:50:47 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-08-22 07:50:47 +0000 |
commit | 2467875c22ef63bc82b9a25eb7d4131a6511fc95 (patch) | |
tree | bc7390133e17991ffd93c5ea8a03b419e7a33870 /lisp/image.el | |
parent | 38f37c0fdb9e801cbeef4bc9c0bae6e8c44eb2da (diff) | |
download | emacs-2467875c22ef63bc82b9a25eb7d4131a6511fc95.tar.gz |
(create-image): Doc fix.
Diffstat (limited to 'lisp/image.el')
-rw-r--r-- | lisp/image.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index d63c69cafed..e00a50ddc03 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -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) |