diff options
| -rw-r--r-- | lisp/server.el | 3 |
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 |