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 c78d08c53d2..13843a2ac4d 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1666,8 +1666,8 @@ cleaning up all windows currently displaying the buffer to be killed. */)
1666 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) 1666 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
1667 { 1667 {
1668 GCPRO1 (buffer); 1668 GCPRO1 (buffer);
1669 tem = do_yes_or_no_p (format2 ("Buffer %s modified; kill anyway? ", 1669 AUTO_STRING (format, "Buffer %s modified; kill anyway? ");
1670 BVAR (b, name), make_number (0))); 1670 tem = do_yes_or_no_p (CALLN (Fformat, format, BVAR (b, name)));
1671 UNGCPRO; 1671 UNGCPRO;
1672 if (NILP (tem)) 1672 if (NILP (tem))
1673 return unbind_to (count, Qnil); 1673 return unbind_to (count, Qnil);