]> git.eshelyaron.com Git - emacs.git/commitdiff
* editfns.c (hi_time): Do not overparenthesize.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 12 Mar 2011 22:52:25 +0000 (14:52 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 12 Mar 2011 22:52:25 +0000 (14:52 -0800)
src/editfns.c

index 4e8ac316a8a1b48a027f7cc68ac82694700c9a11..e55502bdb8965aaece718cc0a61a3f9e871b10c1 100644 (file)
@@ -1439,11 +1439,11 @@ static EMACS_INT
 hi_time (time_t t)
 {
   time_t hi = t >> 16;
-  if (((TYPE_SIGNED (time_t)
-       && TIME_T_MIN >> 16 < MOST_NEGATIVE_FIXNUM
-       && hi < MOST_NEGATIVE_FIXNUM)
-       || (MOST_POSITIVE_FIXNUM < TIME_T_MAX >> 16
-          && MOST_POSITIVE_FIXNUM < hi)))
+  if ((TYPE_SIGNED (time_t)
+       && TIME_T_MIN >> 16 < MOST_NEGATIVE_FIXNUM
+       && hi < MOST_NEGATIVE_FIXNUM)
+      || (MOST_POSITIVE_FIXNUM < TIME_T_MAX >> 16
+         && MOST_POSITIVE_FIXNUM < hi))
     time_overflow ();
   return hi;
 }