aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-12 14:52:25 -0800
committerPaul Eggert2011-03-12 14:52:25 -0800
commit803110b53623077719e4a9d301e416f31007c946 (patch)
tree6abe0d294ad1284f38e639b7438ca8749feb1f09 /src
parentb8d9bd41b7daaa35de8335b20af145a808ae9b07 (diff)
downloademacs-803110b53623077719e4a9d301e416f31007c946.tar.gz
emacs-803110b53623077719e4a9d301e416f31007c946.zip
* editfns.c (hi_time): Do not overparenthesize.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c10
1 files changed, 5 insertions, 5 deletions
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
1439hi_time (time_t t) 1439hi_time (time_t t)
1440{ 1440{
1441 time_t hi = t >> 16; 1441 time_t hi = t >> 16;
1442 if (((TYPE_SIGNED (time_t) 1442 if ((TYPE_SIGNED (time_t)
1443 && TIME_T_MIN >> 16 < MOST_NEGATIVE_FIXNUM 1443 && TIME_T_MIN >> 16 < MOST_NEGATIVE_FIXNUM
1444 && hi < MOST_NEGATIVE_FIXNUM) 1444 && hi < MOST_NEGATIVE_FIXNUM)
1445 || (MOST_POSITIVE_FIXNUM < TIME_T_MAX >> 16 1445 || (MOST_POSITIVE_FIXNUM < TIME_T_MAX >> 16
1446 && MOST_POSITIVE_FIXNUM < hi))) 1446 && MOST_POSITIVE_FIXNUM < hi))
1447 time_overflow (); 1447 time_overflow ();
1448 return hi; 1448 return hi;
1449} 1449}