aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-10-05 09:00:38 +0000
committerJuanma Barranquero <[email protected]>2007-10-05 09:00:38 +0000
commit4024ec3a26d62f7fd99f4868e6e02c225bd3347c (patch)
treed47e6d01f4911036155e6baf9961facf12a9fd79 /src
parentcb91e86ae525691cae9417e38b15d0f80be4ac91 (diff)
(syms_of_image) <image-types>: Fix typo in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/image.c12
2 files changed, 10 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index eb45d47a8f..656128832b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,6 +4,10 @@
[USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
Add BLOCK_INPUT.
+2007-10-04 Juanma Barranquero <[email protected]>
+
+ * image.c (syms_of_image) <image-types>: Fix typo in docstring.
+
2007-10-02 Richard Stallman <[email protected]>
* xdisp.c (get_window_cursor_type): Implement documented behavior
diff --git a/src/image.c b/src/image.c
index 1b024e5c1d..28214642c3 100644
--- a/src/image.c
+++ b/src/image.c
@@ -1709,9 +1709,9 @@ free_image_cache (f)
/* Clear image cache of frame F. FORCE_P non-zero means free all
images. FORCE_P zero means clear only images that haven't been
displayed for some time. Should be called from time to time to
- reduce the number of loaded images. If image-eviction-seconds is
- non-nil, this frees images in the cache which weren't displayed for
- at least that many seconds. */
+ reduce the number of loaded images. If image-cache-eviction-delay
+ is non-nil, this frees images in the cache which weren't displayed
+ for at least that many seconds. */
void
clear_image_cache (f, force_p)
@@ -2878,7 +2878,7 @@ enum xbm_token
3. a vector of strings or bool-vectors, one for each line of the
bitmap.
- 4. A string containing an in-memory XBM file. WIDTH and HEIGHT
+ 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
may not be specified in this case because they are defined in the
XBM file.
@@ -4275,7 +4275,7 @@ xpm_scan (s, end, beg, len)
return XPM_TK_EOF;
}
-/* Functions for color table lookup in XPM data. A Key is a string
+/* Functions for color table lookup in XPM data. A key is a string
specifying the color of each pixel in XPM data. A value is either
an integer that specifies a pixel color, Qt that specifies
transparency, or Qnil for the unspecified color. If the length of
@@ -8620,7 +8620,7 @@ syms_of_image ()
defining the supported image types. */
DEFVAR_LISP ("image-types", &Vimage_types,
doc: /* List of potentially supported image types.
-Each element of the list is a symbol for a image type, like 'jpeg or 'png.
+Each element of the list is a symbol for an image type, like 'jpeg or 'png.
To check whether it is really supported, use `image-type-available-p'. */);
Vimage_types = Qnil;