aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/server.el
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-19 00:31:42 +0000
committerRichard M. Stallman1994-04-19 00:31:42 +0000
commit3717217eee6d4e0b4871e89980cdae7bf828ab14 (patch)
treea391df5c25bd06a41ecd66cbf3715d72e71e8dd0 /lisp/server.el
parenta14938298fa492f04ce9bde4cb2e4e9e566967b5 (diff)
downloademacs-3717217eee6d4e0b4871e89980cdae7bf828ab14.tar.gz
emacs-3717217eee6d4e0b4871e89980cdae7bf828ab14.zip
(kill-buffer-query-functions): Fix the question text.
Diffstat (limited to 'lisp/server.el')
-rw-r--r--lisp/server.el3
1 files changed, 2 insertions, 1 deletions
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."
290 (function 290 (function
291 (lambda () 291 (lambda ()
292 (or (not server-buffer-clients) 292 (or (not server-buffer-clients)
293 (yes-or-no-p "Buffer `%s' still has clients; kill it? "))))) 293 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
294 (buffer-name (current-buffer))))))))
294 295
295(add-hook 'kill-emacs-query-functions 296(add-hook 'kill-emacs-query-functions
296 (function 297 (function