diff options
| author | Richard M. Stallman | 2003-01-25 19:48:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-25 19:48:30 +0000 |
| commit | 5c4930b020098d0ce9db5c25101ddcdfcea90798 (patch) | |
| tree | c3ff399c0726314969b3478bae7d773534b4b4a0 /src | |
| parent | d40dc1d037dd5636864c961d8c018554e7167ec5 (diff) | |
| download | emacs-5c4930b020098d0ce9db5c25101ddcdfcea90798.tar.gz emacs-5c4930b020098d0ce9db5c25101ddcdfcea90798.zip | |
(Fkill_buffer): Call format2 instead of format1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 95876c19438..49813b38d37 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1293,8 +1293,8 @@ with SIGHUP. */) | |||
| 1293 | && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) | 1293 | && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) |
| 1294 | { | 1294 | { |
| 1295 | GCPRO1 (buf); | 1295 | GCPRO1 (buf); |
| 1296 | tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ", | 1296 | tem = do_yes_or_no_p (format2 ("Buffer %s modified; kill anyway? ", |
| 1297 | SDATA (b->name))); | 1297 | b->name, make_number (0))); |
| 1298 | UNGCPRO; | 1298 | UNGCPRO; |
| 1299 | if (NILP (tem)) | 1299 | if (NILP (tem)) |
| 1300 | return Qnil; | 1300 | return Qnil; |