]> git.eshelyaron.com Git - emacs.git/commitdiff
(xpm_load) [!XpmAllocCloseColors]:
authorRichard M. Stallman <rms@gnu.org>
Sat, 7 Aug 1999 11:28:27 +0000 (11:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 7 Aug 1999 11:28:27 +0000 (11:28 +0000)
Use XpmCloseness and attrs.closeness instead.

src/xfns.c

index 2d7a25006923d9641e2f3d9a920569367e1bff54..81e4cece27fc82163f424fc7576dfa3f16d9fc5c 100644 (file)
@@ -6948,8 +6948,13 @@ xpm_load (f, img)
   attrs.visual = FRAME_X_DISPLAY_INFO (f)->visual;
   attrs.valuemask |= XpmVisual;
   attrs.valuemask |= XpmReturnAllocPixels;
+#ifdef XpmAllocCloseColors
   attrs.alloc_close_colors = 1;
   attrs.valuemask |= XpmAllocCloseColors;
+#else
+  attrs.closeness = 600;
+  attrs.valuemask |= XpmCloseness;
+#endif
 
   /* If image specification contains symbolic color definitions, add
      these to `attrs'.  */