Mercurial > emacs
changeset 85254:8004c957b946
Replace `abs' with `eabs'.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 13 Oct 2007 12:43:49 +0000 |
parents | 3b0be4ab6109 |
children | 09574ceaf070 |
files | src/image.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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))