(Fformat): Increment total for size of control string.

This commit is contained in:
Richard M. Stallman 1995-07-18 23:59:23 +00:00
parent 98fc5c3c8e
commit fb893977d6

View file

@ -1879,6 +1879,9 @@ Use %% to put a single % into the output.")
strings[i++] = XSTRING (args[n])->data;
}
/* Make room in result for all the non-%-codes in the control string. */
total += XSTRING (args[0])->size;
/* Format it in bigger and bigger buf's until it all fits. */
while (1)
{