* macfns.c (x_to_mac_color): Correct the order for parsing the RGB
values in old-style RGB specs.
+2003-01-28 Andrew Choi <akochoi@shaw.ca>
+
+ * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
+ values in old-style RGB specs.
+
2003-01-27 Juanma Barranquero <lektu@terra.es>
* w32fns.c (init_external_image_libraries): Try alternate names for the
{
unsigned long colorval;
int i, pos;
- pos = 0;
+ pos = 16;
size /= 3;
colorval = 0;
break;
}
colorval |= (value << pos);
- pos += 0x8;
+ pos -= 8;
if (i == 2)
{
UNBLOCK_INPUT;