aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
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;