changeset 85261:a8b8f12ca180

Replace `abs' with `eabs'.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 13 Oct 2007 12:47:25 +0000
parents 96a92ff6e0de
children 77d6e76160a6
files src/xdisp.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Sat Oct 13 12:46:49 2007 +0000
+++ b/src/xdisp.c	Sat Oct 13 12:47:25 2007 +0000
@@ -12468,7 +12468,7 @@
 	     minimum distance from the old window start.  */
 	  pos = it.current.pos;
 	  min_distance = INFINITY;
-	  while ((distance = abs (CHARPOS (start_pos) - IT_CHARPOS (it))),
+	  while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
 		 distance < min_distance)
 	    {
 	      min_distance = distance;
@@ -20029,9 +20029,9 @@
 	}
 
       if (it->start_of_box_run_p && slice.x == 0)
-	it->pixel_width += abs (face->box_line_width);
+	it->pixel_width += eabs (face->box_line_width);
       if (it->end_of_box_run_p && slice.x + slice.width == img->width)
-	it->pixel_width += abs (face->box_line_width);
+	it->pixel_width += eabs (face->box_line_width);
     }
 
   take_vertical_position_into_account (it);
@@ -22293,8 +22293,8 @@
 		goto found;
 	      }
 	    else if (best_glyph == NULL
-		     || ((abs (g->charpos - pos)
-			 < abs (best_glyph->charpos - pos))
+		     || ((eabs (g->charpos - pos)
+			 < eabs (best_glyph->charpos - pos))
 			 && (right_p
 			     ? g->charpos < pos
 			     : g->charpos > pos)))