(barf_or_query_if_file_exists): Call format2 instead of format1.
This commit is contained in:
parent
5c4930b020
commit
67e8e2b809
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue