From: Paul Eggert Date: Sat, 12 Mar 2011 22:52:25 +0000 (-0800) Subject: * editfns.c (hi_time): Do not overparenthesize. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~590^2^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=803110b53623077719e4a9d301e416f31007c946;p=emacs.git * editfns.c (hi_time): Do not overparenthesize. --- diff --git a/src/editfns.c b/src/editfns.c index 4e8ac316a8a..e55502bdb89 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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; }