]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fformat): Add parens.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Dec 2002 18:00:23 +0000 (18:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Dec 2002 18:00:23 +0000 (18:00 +0000)
src/editfns.c

index 6deb9b96f8ab3190eee1a57d43d560840fbebe77..6539cd11d45635f88cf8adc682d7f4e8e17352a7 100644 (file)
@@ -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
          {