(barf_or_query_if_file_exists): Call format2 instead of format1.

This commit is contained in:
Richard M. Stallman 2003-01-25 19:48:59 +00:00
parent 5c4930b020
commit 67e8e2b809

View file

@ -2323,8 +2323,8 @@ barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick)
Fcons (build_string ("File already exists"),
Fcons (absname, Qnil)));
GCPRO1 (absname);
tem = format1 ("File %s already exists; %s anyway? ",
SDATA (absname), querystring);
tem = format2 ("File %s already exists; %s anyway? ",
absname, build_string (querystring));
if (quick)
tem = Fy_or_n_p (tem);
else