# HG changeset patch # User Eli Zaretskii # Date 1192279411 0 # Node ID 3b0be4ab6109772a48a1ec1a8e2f59dec19dcc99 # Parent 62ea6778c569ed962084c34eea001013f2029d61 Replace `abs' with `eabs'. diff -r 62ea6778c569 -r 3b0be4ab6109 src/editfns.c --- a/src/editfns.c Sat Oct 13 12:43:09 2007 +0000 +++ b/src/editfns.c Sat Oct 13 12:43:31 2007 +0000 @@ -1848,7 +1848,7 @@ tzstring = (char *) SDATA (zone); else if (INTEGERP (zone)) { - int abszone = abs (XINT (zone)); + int abszone = eabs (XINT (zone)); sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0), abszone / (60*60), (abszone/60) % 60, abszone % 60); tzstring = tzbuf;