aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorEli Zaretskii2007-10-13 12:48:57 +0000
committerEli Zaretskii2007-10-13 12:48:57 +0000
commit1ea40aa2f3b0809c27c4f095a7f8dde432fcc89d (patch)
tree5ff3410aecc837cec234cc3bb8f463a0b00de8eb /src/editfns.c
parent555b10b098c1f9a0450e385d291386caae1dda4f (diff)
downloademacs-1ea40aa2f3b0809c27c4f095a7f8dde432fcc89d.tar.gz
emacs-1ea40aa2f3b0809c27c4f095a7f8dde432fcc89d.zip
Replace `abs' with `eabs'.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index dac7eb83af2..98ab2f90081 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1848,7 +1848,7 @@ usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */)
1848 tzstring = (char *) SDATA (zone); 1848 tzstring = (char *) SDATA (zone);
1849 else if (INTEGERP (zone)) 1849 else if (INTEGERP (zone))
1850 { 1850 {
1851 int abszone = abs (XINT (zone)); 1851 int abszone = eabs (XINT (zone));
1852 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0), 1852 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1853 abszone / (60*60), (abszone/60) % 60, abszone % 60); 1853 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1854 tzstring = tzbuf; 1854 tzstring = tzbuf;