]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorAndreas Schwab <schwab@suse.de>
Fri, 16 Nov 2007 00:19:22 +0000 (00:19 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 16 Nov 2007 00:19:22 +0000 (00:19 +0000)
src/ChangeLog
src/editfns.c

index 3a74e58061ef2c991d2f29b065fc887bde8ab5b4..f0a2e29bfee4d66518b1772e6ad8b0108ba148af 100644 (file)
@@ -1,7 +1,7 @@
 2007-11-15  Andreas Schwab  <schwab@suse.de>
 
-       * editfns.c (Fformat): Correctly format EMACS_INT values.
-       When formatting an integer as float take precision into account.
+       * editfns.c (Fformat): Correctly format EMACS_INT values.  Also
+       take precision into account when formatting an integer.
 
        * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
 
index fae485ae709c78b5184d887264bf52aa1ea594b8..008cc3a95bf1cbefa904d0db5cf7b591952c4db1 100644 (file)
@@ -3599,9 +3599,7 @@ usage: (format STRING &rest OBJECTS)  */)
               So make sure we have a flonum if the argument should
               be a double.  */
            if (*format == 'e' || *format == 'f' || *format == 'g')
-             {
-               args[n] = Ffloat (args[n]);
-             }
+             args[n] = Ffloat (args[n]);
            else
              if (*format != 'd' && *format != 'o' && *format != 'x'
                  && *format != 'i' && *format != 'X' && *format != 'c')