From: Karl Heuer Date: Fri, 19 Mar 1999 08:09:59 +0000 (+0000) Subject: (Fformat): Accept %i format. X-Git-Tag: emacs-20.4~444 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=00d6521642fbdf95fd9d1fc546e38af4ba504e95;p=emacs.git (Fformat): Accept %i format. --- diff --git a/src/editfns.c b/src/editfns.c index f1b77d56ff0..6599f23bae2 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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;