From: Gerd Moellmann Date: Thu, 1 Nov 2001 10:38:59 +0000 (+0000) Subject: (four_corners_best): Reindent. X-Git-Tag: ttn-vms-21-2-B4~18919 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b350c2e5c30600d1361bd8dc61432158e38f002b;p=emacs.git (four_corners_best): Reindent. --- diff --git a/src/ChangeLog b/src/ChangeLog index c2e675db815..586db55b6f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2001-11-01 Gerd Moellmann + * xfns.c (four_corners_best): Reindent. + * xfaces.c (Finternal_set_lisp_face_attribute_from_resource): Handle :box so that it is possible to specify sexprs. diff --git a/src/xfns.c b/src/xfns.c index 4b4dcdc75a3..4ae92260cfd 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -5778,29 +5778,29 @@ four_corners_best (ximg, width, height) XImage *ximg; unsigned long width, height; { - unsigned long corners[4], best; - int i, best_count; + unsigned long corners[4], best; + int i, best_count; - /* Get the colors at the corners of ximg. */ - corners[0] = XGetPixel (ximg, 0, 0); - corners[1] = XGetPixel (ximg, width - 1, 0); - corners[2] = XGetPixel (ximg, width - 1, height - 1); - corners[3] = XGetPixel (ximg, 0, height - 1); + /* Get the colors at the corners of ximg. */ + corners[0] = XGetPixel (ximg, 0, 0); + corners[1] = XGetPixel (ximg, width - 1, 0); + corners[2] = XGetPixel (ximg, width - 1, height - 1); + corners[3] = XGetPixel (ximg, 0, height - 1); - /* Choose the most frequently found color as background. */ - for (i = best_count = 0; i < 4; ++i) - { - int j, n; + /* Choose the most frequently found color as background. */ + for (i = best_count = 0; i < 4; ++i) + { + int j, n; - for (j = n = 0; j < 4; ++j) - if (corners[i] == corners[j]) - ++n; + for (j = n = 0; j < 4; ++j) + if (corners[i] == corners[j]) + ++n; - if (n > best_count) - best = corners[i], best_count = n; - } + if (n > best_count) + best = corners[i], best_count = n; + } - return best; + return best; } /* Return the `background' field of IMG. If IMG doesn't have one yet,