# HG changeset patch # User Eli Zaretskii # Date 1192279429 0 # Node ID 8004c957b94619f7e9821cea2865e3abadeb1f8a # Parent 3b0be4ab6109772a48a1ec1a8e2f59dec19dcc99 Replace `abs' with `eabs'. diff -r 3b0be4ab6109 -r 8004c957b946 src/image.c --- a/src/image.c Sat Oct 13 12:43:31 2007 +0000 +++ b/src/image.c Sat Oct 13 12:43:49 2007 +0000 @@ -1984,8 +1984,8 @@ if (INTEGERP (relief)) { img->relief = XINT (relief); - img->hmargin += abs (img->relief); - img->vmargin += abs (img->relief); + img->hmargin += eabs (img->relief); + img->vmargin += eabs (img->relief); } if (! img->background_valid) @@ -5165,7 +5165,7 @@ int x, y, i, sum; for (i = sum = 0; i < 9; ++i) - sum += abs (matrix[i]); + sum += eabs (matrix[i]); #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))