summaryrefslogtreecommitdiff
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2006-08-25 23:33:04 +0000
committerKim F. Storm <storm@cua.dk>2006-08-25 23:33:04 +0000
commita508663b2687133cd711ef801be11e0f299b5d9c (patch)
tree94e121f1851e0934597587bb17ae6a253549fd33 /src/w32fns.c
parentd489b9c5be7c4c8ccfa5a0f4a411bd891faaa663 (diff)
downloademacs-a508663b2687133cd711ef801be11e0f299b5d9c.tar.gz
(Fxw_color_values): Simplify; use list3.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index e1cae4f3eb4..8c6a60d47bf 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -6355,17 +6355,12 @@ DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
CHECK_STRING (color);
if (w32_defined_color (f, SDATA (color), &foo, 0))
- {
- Lisp_Object rgb[3];
-
- rgb[0] = make_number ((GetRValue (foo.pixel) << 8)
- | GetRValue (foo.pixel));
- rgb[1] = make_number ((GetGValue (foo.pixel) << 8)
- | GetGValue (foo.pixel));
- rgb[2] = make_number ((GetBValue (foo.pixel) << 8)
- | GetBValue (foo.pixel));
- return Flist (3, rgb);
- }
+ return list3 (make_number ((GetRValue (foo.pixel) << 8)
+ | GetRValue (foo.pixel)),
+ make_number ((GetGValue (foo.pixel) << 8)
+ | GetGValue (foo.pixel)),
+ make_number ((GetBValue (foo.pixel) << 8)
+ | GetBValue (foo.pixel)));
else
return Qnil;
}