diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-12-21 18:00:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-12-21 18:00:23 +0000 |
commit | 6b381c3ac9e4f98148449868fa41c6b344f8413d (patch) | |
tree | 4d1ad9f03a77c98ef7cdc80cb45c49177b287b90 /src/editfns.c | |
parent | 9f7d9210189689aab2787879d65f58a8abdfb208 (diff) | |
download | emacs-6b381c3ac9e4f98148449868fa41c6b344f8413d.tar.gz |
(Fformat): Add parens.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 3 |
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) */) 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 { |