diff src/editfns.c @ 48908:d5680dc3113e

(Fformat): Add parens.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 Dec 2002 18:00:23 +0000
parents b02bdb795a5c
children 7ec1335b6d36
line wrap: on
line diff
--- a/src/editfns.c	Sat Dec 21 17:59:27 2002 +0000
+++ b/src/editfns.c	Sat Dec 21 18:00:23 2002 +0000
@@ -3386,7 +3386,8 @@
 	       so we have to take into account what that function
 	       prints.  */
 	    /* Filter out flag value of -1.  */
-	    thissize = MAX_10_EXP + 100 + ((precision[n] > 0) ? precision[n] : 0);
+	    thissize = (MAX_10_EXP + 100
+			+ (precision[n] > 0 ? precision[n] : 0));
 	  }
 	else
 	  {