aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorPaul Eggert2013-03-18 21:41:53 -0700
committerPaul Eggert2013-03-18 21:41:53 -0700
commitbad98418bf75efc6dd8ac393157413bc6ef769b4 (patch)
treeee2151b8a97dc2b71ab938e2a1938720d876ec1b /src/image.c
parent627b52b0c6f73edc94db90b1f76bd9f44a626ffd (diff)
downloademacs-bad98418bf75efc6dd8ac393157413bc6ef769b4.tar.gz
emacs-bad98418bf75efc6dd8ac393157413bc6ef769b4.zip
Spelling fixes.
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/image.c b/src/image.c
index 0d4bc82f3b4..2c0f6e3b8c1 100644
--- a/src/image.c
+++ b/src/image.c
@@ -154,15 +154,15 @@ XGetImage (Display *display, Pixmap pixmap, int x, int y,
154 return pixmap; 154 return pixmap;
155} 155}
156 156
157/* use with imgs created by ns_image_for_XPM */ 157/* Use with images created by ns_image_for_XPM. */
158unsigned long 158unsigned long
159XGetPixel (XImagePtr ximage, int x, int y) 159XGetPixel (XImagePtr ximage, int x, int y)
160{ 160{
161 return ns_get_pixel (ximage, x, y); 161 return ns_get_pixel (ximage, x, y);
162} 162}
163 163
164/* use with imgs created by ns_image_for_XPM; alpha set to 1; 164/* Use with images created by ns_image_for_XPM; alpha set to 1;
165 pixel is assumed to be in form RGB */ 165 pixel is assumed to be in RGB form. */
166void 166void
167XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel) 167XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel)
168{ 168{