diff options
| author | Richard M. Stallman | 2003-01-25 19:48:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-25 19:48:59 +0000 |
| commit | 67e8e2b8092fe8e79b24e079dfccde390db4f58c (patch) | |
| tree | 0fd26cc2d0cb0161b25c29f256c14c1a041c689f /src/fileio.c | |
| parent | 5c4930b020098d0ce9db5c25101ddcdfcea90798 (diff) | |
| download | emacs-67e8e2b8092fe8e79b24e079dfccde390db4f58c.tar.gz emacs-67e8e2b8092fe8e79b24e079dfccde390db4f58c.zip | |
(barf_or_query_if_file_exists): Call format2 instead of format1.
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index bfb15d2954b..b3fcda88e98 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2323,8 +2323,8 @@ barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick) | |||
| 2323 | Fcons (build_string ("File already exists"), | 2323 | Fcons (build_string ("File already exists"), |
| 2324 | Fcons (absname, Qnil))); | 2324 | Fcons (absname, Qnil))); |
| 2325 | GCPRO1 (absname); | 2325 | GCPRO1 (absname); |
| 2326 | tem = format1 ("File %s already exists; %s anyway? ", | 2326 | tem = format2 ("File %s already exists; %s anyway? ", |
| 2327 | SDATA (absname), querystring); | 2327 | absname, build_string (querystring)); |
| 2328 | if (quick) | 2328 | if (quick) |
| 2329 | tem = Fy_or_n_p (tem); | 2329 | tem = Fy_or_n_p (tem); |
| 2330 | else | 2330 | else |