aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-21 18:00:23 +0000
committerRichard M. Stallman2002-12-21 18:00:23 +0000
commit6b381c3ac9e4f98148449868fa41c6b344f8413d (patch)
tree4d1ad9f03a77c98ef7cdc80cb45c49177b287b90 /src
parent9f7d9210189689aab2787879d65f58a8abdfb208 (diff)
downloademacs-6b381c3ac9e4f98148449868fa41c6b344f8413d.tar.gz
emacs-6b381c3ac9e4f98148449868fa41c6b344f8413d.zip
(Fformat): Add parens.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 6deb9b96f8a..6539cd11d45 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3386,7 +3386,8 @@ usage: (format STRING &rest OBJECTS) */)
3386 so we have to take into account what that function 3386 so we have to take into account what that function
3387 prints. */ 3387 prints. */
3388 /* Filter out flag value of -1. */ 3388 /* Filter out flag value of -1. */
3389 thissize = MAX_10_EXP + 100 + ((precision[n] > 0) ? precision[n] : 0); 3389 thissize = (MAX_10_EXP + 100
3390 + (precision[n] > 0 ? precision[n] : 0));
3390 } 3391 }
3391 else 3392 else
3392 { 3393 {