# HG changeset patch # User Richard M. Stallman # Date 1043524139 0 # Node ID 643eb4ccb3a38b3df1bdffbf683f793a507c16dd # Parent a80513b2029717a02346e4d3f68acc7eb8a0ce28 (barf_or_query_if_file_exists): Call format2 instead of format1. diff -r a80513b20297 -r 643eb4ccb3a3 src/fileio.c --- a/src/fileio.c Sat Jan 25 19:48:30 2003 +0000 +++ b/src/fileio.c Sat Jan 25 19:48:59 2003 +0000 @@ -2323,8 +2323,8 @@ 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