]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fformat): Accept %i format.
authorKarl Heuer <kwzh@gnu.org>
Fri, 19 Mar 1999 08:09:59 +0000 (08:09 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 19 Mar 1999 08:09:59 +0000 (08:09 +0000)
src/editfns.c

index f1b77d56ff09c2381315dd52d798f1736cc3212d..6599f23bae2ad1dff74bf7f0b4b16855a0c57259 100644 (file)
@@ -2579,7 +2579,7 @@ Use %% to put a single % into the output.")
            else
 #endif
              if (*format != 'd' && *format != 'o' && *format != 'x'
-                 && *format != 'X' && *format != 'c')
+                 && *format != 'i' && *format != 'X' && *format != 'c')
                error ("Invalid format operation %%%c", *format);
 
            thissize = 30;