From: Richard M. Stallman Date: Sat, 21 Dec 2002 18:00:23 +0000 (+0000) Subject: (Fformat): Add parens. X-Git-Tag: ttn-vms-21-2-B4~11958 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b381c3ac9e4f98148449868fa41c6b344f8413d;p=emacs.git (Fformat): Add parens. --- 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 {