From 3717217eee6d4e0b4871e89980cdae7bf828ab14 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 19 Apr 1994 00:31:42 +0000 Subject: [PATCH] (kill-buffer-query-functions): Fix the question text. --- lisp/server.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/server.el b/lisp/server.el index 75655093542..efa35ac6800 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -290,7 +290,8 @@ Then bury it, and return a suggested buffer to select next." (function (lambda () (or (not server-buffer-clients) - (yes-or-no-p "Buffer `%s' still has clients; kill it? "))))) + (yes-or-no-p (format "Buffer `%s' still has clients; kill it? " + (buffer-name (current-buffer)))))))) (add-hook 'kill-emacs-query-functions (function -- 2.39.5